diff options
author | Vincent Hamm | 2002-02-20 22:24:40 +0000 |
---|---|---|
committer | Vincent Hamm | 2002-02-20 22:24:40 +0000 |
commit | 3f0e2ed2f23f66fb4c5a04c863ea45ae8eceed4a (patch) | |
tree | 8c801d5fb34b0244a38db58f8289133b77a16b4f | |
parent | ec69a097c484974abfeb7b133988eecf3a9c0927 (diff) | |
download | scummvm-rg350-3f0e2ed2f23f66fb4c5a04c863ea45ae8eceed4a.tar.gz scummvm-rg350-3f0e2ed2f23f66fb4c5a04c863ea45ae8eceed4a.tar.bz2 scummvm-rg350-3f0e2ed2f23f66fb4c5a04c863ea45ae8eceed4a.zip |
Removed the need for subdirectory for V5 and latter games
svn-id: r3616
-rw-r--r-- | resource.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resource.cpp b/resource.cpp index 38ed41c1c4..52dea3e68e 100644 --- a/resource.cpp +++ b/resource.cpp @@ -68,7 +68,7 @@ void Scumm::openRoom(int room) { _encbyte = (_features & GF_USE_KEY) ? 0x69 : 0; #else if (!(_features & GF_SMALL_HEADER)) { - sprintf(buf, "%s//%s.%.3d", _exe_name, _exe_name, room==0 ? 0 : res.roomno[rtRoom][room]); + sprintf(buf, "%s.%.3d", _exe_name, room==0 ? 0 : res.roomno[rtRoom][room]); _encbyte = (_features & GF_USE_KEY) ? 0x69 : 0; } else if(!(_features & GF_SMALL_NAMES)) { |