diff options
Diffstat (limited to 'simon')
-rw-r--r-- | simon/simon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp index 4e6d5b1062..a28fe812f9 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -837,7 +837,7 @@ void SimonState::playSting(uint a) uint16 size; _mus_file = new File(); - sprintf(filename, "STINGS%i.MUS", a); + sprintf(filename, "STINGS%i.MUS", _midi_sfx); _mus_file->open(filename, _gameDataPath); if (!_mus_file->isOpen()) { warning("Can't load sound effect from '%s'", filename); |