[Scummvm-cvs-logs] scummvm master -> 2cc721760ff29c78bea6373ed8628b1bc3aedc6b

lordhoto lordhoto at gmail.com
Mon Jun 20 17:02:55 CEST 2011


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
2cc721760f WIN32: Properly setup priority in Win32 resource archive code.


Commit: 2cc721760ff29c78bea6373ed8628b1bc3aedc6b
    https://github.com/scummvm/scummvm/commit/2cc721760ff29c78bea6373ed8628b1bc3aedc6b
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2011-06-20T08:00:36-07:00

Commit Message:
WIN32: Properly setup priority in Win32 resource archive code.

Changed paths:
    backends/platform/sdl/win32/win32.cpp



diff --git a/backends/platform/sdl/win32/win32.cpp b/backends/platform/sdl/win32/win32.cpp
index 5b14be4..432f707 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);
 }






More information about the Scummvm-git-logs mailing list