diff options
| author | Travis Howell | 2003-07-21 09:11:21 +0000 |
|---|---|---|
| committer | Travis Howell | 2003-07-21 09:11:21 +0000 |
| commit | 93cb369da7d251d55661b108dca633ff47412b84 (patch) | |
| tree | e3770ea30b9516cc8636d2d0f050b45099ec5484 /simon/items.cpp | |
| parent | 2b5cc772d71a15622dc970793fbb6f9c03763772 (diff) | |
| download | scummvm-rg350-93cb369da7d251d55661b108dca633ff47412b84.tar.gz scummvm-rg350-93cb369da7d251d55661b108dca633ff47412b84.tar.bz2 scummvm-rg350-93cb369da7d251d55661b108dca633ff47412b84.zip | |
Rename variable
svn-id: r9106
Diffstat (limited to 'simon/items.cpp')
| -rw-r--r-- | simon/items.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/simon/items.cpp b/simon/items.cpp index 6b294b72aa..8dcfacdc35 100644 --- a/simon/items.cpp +++ b/simon/items.cpp @@ -1049,12 +1049,12 @@ int SimonEngine::runScript() { case 185:{ /* midi sfx file number */ if (_game & GF_SIMON2) goto invalid_opcode; - _midi_sfx = getVarOrWord(); + _sound_file_id = getVarOrWord(); if (_game == GAME_SIMON1CD32) { char buf[10]; - sprintf(buf, "%d%s", _midi_sfx, "Effects"); + sprintf(buf, "%d%s", _sound_file_id, "Effects"); _sound->readSfxFile(buf, _gameDataPath); - sprintf(buf, "%d%s", _midi_sfx, "simon"); + sprintf(buf, "%d%s", _sound_file_id, "simon"); _sound->readVoiceFile(buf, _gameDataPath); } |
