From b8ad54b3af1de97bf986e7e4d4da97f02ece3273 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sun, 27 Jun 2004 22:14:35 +0000 Subject: Reversed param order of File::open() -- this allowed me to get rid of a few more getGameDataPath() calls svn-id: r14090 --- simon/items.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'simon/items.cpp') diff --git a/simon/items.cpp b/simon/items.cpp index d945f6ba76..5e67881576 100644 --- a/simon/items.cpp +++ b/simon/items.cpp @@ -1025,9 +1025,9 @@ int SimonEngine::runScript() { if (_game == GAME_SIMON1CD32) { char buf[10]; sprintf(buf, "%d%s", _sound_file_id, "Effects"); - _sound->readSfxFile(buf, _gameDataPath); + _sound->readSfxFile(buf); sprintf(buf, "%d%s", _sound_file_id, "simon"); - _sound->readVoiceFile(buf, _gameDataPath); + _sound->readVoiceFile(buf); } } -- cgit v1.2.3