sync with scummvm

This commit is contained in:
Pawel Kolodziejski 2012-01-28 10:44:25 +01:00
parent 9771492e6c
commit b15eee129d
38 changed files with 454 additions and 278 deletions

View file

@ -38,6 +38,7 @@
#include <SDL_syswm.h> // For setting the icon
#include "backends/platform/sdl/win32/win32.h"
#include "backends/saves/windows/windows-saves.h"
#include "backends/fs/windows/windows-fs-factory.h"
#include "backends/taskbar/win32/win32-taskbar.h"
@ -74,6 +75,10 @@ void OSystem_Win32::initBackend() {
FreeConsole();
}
// Create the savefile manager
if (_savefileManager == 0)
_savefileManager = new WindowsSaveFileManager();
// Invoke parent implementation of this method
OSystem_SDL::initBackend();
}