aboutsummaryrefslogtreecommitdiff
path: root/simon/sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'simon/sound.cpp')
-rw-r--r--simon/sound.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/simon/sound.cpp b/simon/sound.cpp
index 2c5adf89bb..1e58257fcd 100644
--- a/simon/sound.cpp
+++ b/simon/sound.cpp
@@ -66,7 +66,7 @@ SimonSound::SimonSound(const byte game, const GameSpecificSettings *gss, const c
file->open(gss->mp3_filename, gameDataPath);
if (file->isOpen() == false) {
#endif
- if (_game & GAME_WIN) {
+ if (_game & GF_WIN) {
s = gss->wav_filename;
file->open(s, gameDataPath);
if (file->isOpen() == false) {
@@ -75,7 +75,7 @@ SimonSound::SimonSound(const byte game, const GameSpecificSettings *gss, const c
_voice_file = true;
_voice = new WavSound(_mixer, file);
}
- } else if (_game & GAME_TALKIE) {
+ } else if (_game & GF_TALKIE) {
s = gss->voc_filename;
file->open(s, gameDataPath);
if (file->isOpen() == false) {
@@ -141,7 +141,7 @@ void SimonSound::loadSfxTable(File *gameFile, uint32 base)
{
stopAll();
- if (_game & GAME_WIN)
+ if (_game & GF_WIN)
_effects = new WavSound(_mixer, gameFile, base);
else
_effects = new VocSound(_mixer, gameFile, base);