diff options
author | Eugene Sandulenko | 2019-07-26 22:46:38 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:17:29 +0200 |
commit | fc0dd1fb1a522e496501ee41f2e0f3c24059455c (patch) | |
tree | 97cb3548e8e45b84f386b33f1a6f8f1ccc9fc2f1 | |
parent | 7f7de57ba4a860d5918e4e69e6fa90c9cb691312 (diff) | |
download | scummvm-rg350-fc0dd1fb1a522e496501ee41f2e0f3c24059455c.tar.gz scummvm-rg350-fc0dd1fb1a522e496501ee41f2e0f3c24059455c.tar.bz2 scummvm-rg350-fc0dd1fb1a522e496501ee41f2e0f3c24059455c.zip |
HDB: Added demo sound constants
-rw-r--r-- | engines/hdb/mpc.h | 11 | ||||
-rw-r--r-- | engines/hdb/sound.cpp | 13 | ||||
-rw-r--r-- | engines/hdb/sound.h | 12 |
3 files changed, 36 insertions, 0 deletions
diff --git a/engines/hdb/mpc.h b/engines/hdb/mpc.h index 71481e246f..137a5b381b 100644 --- a/engines/hdb/mpc.h +++ b/engines/hdb/mpc.h @@ -1995,6 +1995,17 @@ namespace HDB { #define GUY_WINS_MP3 "GUY_WINS_MP3" #define HDB_INTRO_MP3 "HDB_INTRO_MP3" +#define DEMO_SARGE01_MP3 "DEMO_SARGE01_MP3" +#define DEMO_SARGE02_MP3 "DEMO_SARGE_02_MP3" +#define DEMO_SARGE03_MP3 "DEMO_SARGE_03_MP3" +#define DEMO_SARGE04_MP3 "DEMO_SARGE_04_MP3" +#define DEMO_SARGE05_MP3 "DEMO_SARGE_05_MP3" +#define DEMO_SARGE06_MP3 "DEMO_SARGE_06_MP3" +#define DEMO_GUY_01_MP3 "DEMO_GUY_01_MP3" +#define DEMO_PILOT_01_MP3 "DEMO_PILOT_01_MP3" +#define DEMO_SCIENTIST_01_MP3 "DEMO_SCIENTIST_01_MP3" +#define DEMO_SCIENTIST_02_MP3 "DEMO_SCIENTIST_02_MP3" + enum IconList { ICON_GUY_DOWN, ICON_GUY_UP, diff --git a/engines/hdb/sound.cpp b/engines/hdb/sound.cpp index a1c220c597..394745f418 100644 --- a/engines/hdb/sound.cpp +++ b/engines/hdb/sound.cpp @@ -1388,6 +1388,19 @@ const SoundLookUp soundList[] = { {GUY_GOT_SOMETHING, GUY_GOT_SOMETHING_MP3, "GUY_GOT_SOMETHING"}, {HDB_INTRO, HDB_INTRO_MP3, "HDB_INTRO"}, + // Demo files + {DEMO_SARGE_01, DEMO_SARGE01_MP3, "DEMO_SARGE_01"}, + {DEMO_SARGE_02, DEMO_SARGE02_MP3, "DEMO_SARGE_02"}, + {DEMO_SARGE_03, DEMO_SARGE03_MP3, "DEMO_SARGE_03"}, + {DEMO_SARGE_04, DEMO_SARGE04_MP3, "DEMO_SARGE_04"}, + {DEMO_SARGE_05, DEMO_SARGE05_MP3, "DEMO_SARGE_05"}, + {DEMO_SARGE_06, DEMO_SARGE06_MP3, "DEMO_SARGE_06"}, + + {DEMO_GUY_01, DEMO_GUY_01_MP3, "DEMO_GUY_01"}, + {DEMO_PILOT_01, DEMO_PILOT_01_MP3, "DEMO_PILOT_01"}, + {DEMO_SCIENTIST_01, DEMO_SCIENTIST_01_MP3, "DEMO_SCIENTIST_01"}, + {DEMO_SCIENTIST_02, DEMO_SCIENTIST_02_MP3, "DEMO_SCIENTIST_02"}, + {LAST_SOUND, NULL, NULL} }; diff --git a/engines/hdb/sound.h b/engines/hdb/sound.h index 0190d12aca..9e04dadbd4 100644 --- a/engines/hdb/sound.h +++ b/engines/hdb/sound.h @@ -1403,6 +1403,18 @@ enum SoundType { GUY_GOT_SOMETHING, HDB_INTRO, + // Demo files + DEMO_SARGE_01, + DEMO_SARGE_02, + DEMO_SARGE_03, + DEMO_SARGE_04, + DEMO_SARGE_05, + DEMO_SARGE_06, + DEMO_GUY_01, + DEMO_PILOT_01, + DEMO_SCIENTIST_01, + DEMO_SCIENTIST_02, + LAST_SOUND }; |