summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHardeep Sidhu <dyp@pobox.com>2003-07-03 04:04:28 +0000
committerHardeep Sidhu <dyp@pobox.com>2003-07-03 04:04:28 +0000
commit827aad3b87ff612bc3d20f3adb8d2e48ade768ac (patch)
treeba822565f165988bf5a8e78276cb15336bc67f65
parent6cb7b15be86ce29ba510ac662acb1a3cb03a7549 (diff)
downloadrockbox-827aad3b87ff612bc3d20f3adb8d2e48ade768ac.tar.gz
rockbox-827aad3b87ff612bc3d20f3adb8d2e48ade768ac.zip
Roland's fix for running simulator on NT
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3805 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--uisimulator/win32/uisw32.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/uisimulator/win32/uisw32.c b/uisimulator/win32/uisw32.c
index 6d91f76c12..eb568e2a60 100644
--- a/uisimulator/win32/uisw32.c
+++ b/uisimulator/win32/uisw32.c
@@ -50,12 +50,12 @@ char having_new_lcd=true; // Used for player simulator
50 50
51// GUIWndProc 51// GUIWndProc
52// window proc for GUI simulator 52// window proc for GUI simulator
53LRESULT GUIWndProc ( 53LRESULT CALLBACK GUIWndProc (
54 HWND hWnd, 54 HWND hWnd,
55 UINT uMsg, 55 UINT uMsg,
56 WPARAM wParam, 56 WPARAM wParam,
57 LPARAM lParam 57 LPARAM lParam
58 ) 58 )
59{ 59{
60 static HBITMAP hBkgnd; 60 static HBITMAP hBkgnd;
61 static HDC hMemDc; 61 static HDC hMemDc;
@@ -234,7 +234,7 @@ BOOL GUIStartup ()
234 wc.hbrBackground = GetSysColorBrush (COLOR_WINDOW); 234 wc.hbrBackground = GetSysColorBrush (COLOR_WINDOW);
235 wc.hCursor = LoadCursor (NULL, IDC_ARROW); 235 wc.hCursor = LoadCursor (NULL, IDC_ARROW);
236 wc.hInstance = GetModuleHandle (NULL); 236 wc.hInstance = GetModuleHandle (NULL);
237 wc.lpfnWndProc = (WNDPROC)GUIWndProc; 237 wc.lpfnWndProc = GUIWndProc;
238 wc.lpszClassName = "RockBoxUISimulator"; 238 wc.lpszClassName = "RockBoxUISimulator";
239 wc.style = CS_HREDRAW | CS_VREDRAW; 239 wc.style = CS_HREDRAW | CS_VREDRAW;
240 240