VGM export: Arcade sample looping

This commit is contained in:
tildearrow 2022-01-24 17:13:47 -05:00
parent d945e5299a
commit 9d2032d627
6 changed files with 50 additions and 20 deletions

View file

@ -2,7 +2,7 @@
struct DivSample {
String name;
int length, rate, loopStart;
int length, rate, loopStart, loopOffP;
signed char vol, pitch;
unsigned char depth;
short* data;
@ -16,6 +16,7 @@ struct DivSample {
length(0),
rate(32000),
loopStart(-1),
loopOffP(0),
vol(0),
pitch(0),
depth(16),