X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=blobdiff_plain;f=sound.h;h=39f04efba449203ec4f3f78bf239f270bc9a8239;hp=8d5dceef4b0904e9bae915e60d708fbfc816e97f;hb=8d9f69072204deab2486967d710477d4d2949754;hpb=19f8eb7a835a2b084010a8deb8f3d200f995559d diff --git a/sound.h b/sound.h index 8d5dcee..39f04ef 100644 --- a/sound.h +++ b/sound.h @@ -25,12 +25,15 @@ void play_tune(int i); void pause_tune(); void resume_tune(); -#define TUNE_TITLE_PAGE 0 -#define TUNE_GAMEPLAY 1 -#define TUNE_HIGH_SCORE_ENTRY 2 -#define NUM_TUNES 3 +// Currently there's only one tune (gameplay). Calling play_tune() with the +// other tune numbers turns the music off, (and makes it easy to add tunes for +// those screens). +#define TUNE_GAMEPLAY 0 +#define TUNE_TITLE_PAGE 1 +#define TUNE_HIGH_SCORE_ENTRY 2 +#define NUM_TUNES 1 -#define SOUND_BANG 0 -#define NUM_SOUNDS 1 +#define SOUND_BANG 0 +#define NUM_SOUNDS 1 #endif // VOR_SOUND_H