new demo song

by ALTMUS
This commit is contained in:
tildearrow 2025-03-29 22:26:00 -05:00
parent bb2b2e1cc6
commit 13b56870ec
16 changed files with 802 additions and 74 deletions

View file

@ -432,6 +432,7 @@ enum DivChanTypes {
};
extern const char* cmdName[];
extern int curEngineState;
class DivEngine {
DivDispatchContainer disCont[DIV_MAX_CHIPS];
@ -447,6 +448,7 @@ class DivEngine {
bool playing;
bool freelance;
bool shallStop, shallStopSched;
bool reverse;
bool endOfSong;
bool consoleMode;
bool disableStatusOut;
@ -1400,6 +1402,7 @@ class DivEngine {
freelance(false),
shallStop(false),
shallStopSched(false),
reverse(false),
endOfSong(false),
consoleMode(false),
disableStatusOut(false),