diff options
author | Littleboy | 2011-03-31 04:46:36 -0400 |
---|---|---|
committer | Julien | 2011-06-16 10:30:06 -0400 |
commit | c0ec09ac66162d253ab16e1fb9b3a85dfdd176d7 (patch) | |
tree | e11799a41edd53f5317f01c35a2cc81542f6b8c2 /backends/platform/sdl | |
parent | f67975a487704828a2005a26ed6725b01c2554db (diff) | |
download | scummvm-rg350-c0ec09ac66162d253ab16e1fb9b3a85dfdd176d7.tar.gz scummvm-rg350-c0ec09ac66162d253ab16e1fb9b3a85dfdd176d7.tar.bz2 scummvm-rg350-c0ec09ac66162d253ab16e1fb9b3a85dfdd176d7.zip |
BACKENDS: Implement Win32 taskbar progress state and recent list
Diffstat (limited to 'backends/platform/sdl')
-rw-r--r-- | backends/platform/sdl/win32/win32.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/backends/platform/sdl/win32/win32.cpp b/backends/platform/sdl/win32/win32.cpp index 0fd2fbbd1d..bb254786d5 100644 --- a/backends/platform/sdl/win32/win32.cpp +++ b/backends/platform/sdl/win32/win32.cpp @@ -87,6 +87,7 @@ void OSystem_Win32::init() { // Initialize task bar manager _taskbarManager = new Win32TaskbarManager(); + ((Win32TaskbarManager *)_taskbarManager)->init(); // Invoke parent implementation of this method OSystem_SDL::init(); |