diff options
author | Johannes Schickel | 2011-06-20 16:11:55 +0200 |
---|---|---|
committer | Johannes Schickel | 2011-06-20 17:00:36 +0200 |
commit | 2cc721760ff29c78bea6373ed8628b1bc3aedc6b (patch) | |
tree | 602972a94703e82c1910ffcb500f6b4a3dc41b53 | |
parent | 5674dda4ccb36fe1b2fc539be33cb21a52451484 (diff) | |
download | scummvm-rg350-2cc721760ff29c78bea6373ed8628b1bc3aedc6b.tar.gz scummvm-rg350-2cc721760ff29c78bea6373ed8628b1bc3aedc6b.tar.bz2 scummvm-rg350-2cc721760ff29c78bea6373ed8628b1bc3aedc6b.zip |
WIN32: Properly setup priority in Win32 resource archive code.
-rw-r--r-- | backends/platform/sdl/win32/win32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/sdl/win32/win32.cpp b/backends/platform/sdl/win32/win32.cpp index 5b14be4417..432f7077ae 100644 --- a/backends/platform/sdl/win32/win32.cpp +++ b/backends/platform/sdl/win32/win32.cpp @@ -300,7 +300,7 @@ Common::SeekableReadStream *Win32ResourceArchive::createReadStreamForMember(cons } // End of anonymous namespace void OSystem_Win32::addSysArchivesToSearchSet(Common::SearchSet &s, int priority) { - s.add("Win32Res", new Win32ResourceArchive()); + s.add("Win32Res", new Win32ResourceArchive(), priority); OSystem_SDL::addSysArchivesToSearchSet(s, priority); } |