massive improvements to genesis playback
This commit is contained in:
parent
ea5c28829e
commit
45a6d70479
7 changed files with 228 additions and 45 deletions
|
|
@ -4,4 +4,17 @@ struct DivSample {
|
|||
signed char vol, pitch;
|
||||
unsigned char depth;
|
||||
short* data;
|
||||
int rendLength;
|
||||
short* rendData;
|
||||
|
||||
DivSample():
|
||||
name(""),
|
||||
length(0),
|
||||
rate(0),
|
||||
vol(0),
|
||||
pitch(0),
|
||||
depth(16),
|
||||
data(NULL),
|
||||
rendLength(0),
|
||||
rendData(NULL) {}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue