summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2003-12-22 20:24:56 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2003-12-22 20:24:56 +0000
commitc561e53948bafca0ea69cf2d5e303ca2867e86b8 (patch)
tree5ab4074393da5272cf577a0ff3c415778df989cb
parent1707fd94fca56c938d510c25587f537834b7c52a (diff)
downloadrockbox-c561e53948bafca0ea69cf2d5e303ca2867e86b8.tar.gz
rockbox-c561e53948bafca0ea69cf2d5e303ca2867e86b8.zip
Patch #863775 by Bluechip - fixes window size on win32 simulator
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4173 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--uisimulator/win32/uisw32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/uisimulator/win32/uisw32.c b/uisimulator/win32/uisw32.c
index 70b290b69d..7ccec5f42c 100644
--- a/uisimulator/win32/uisw32.c
+++ b/uisimulator/win32/uisw32.c
@@ -247,8 +247,8 @@ BOOL GUIStartup ()
247 "RockBoxUISimulator", "ARCHOS JukeBox", 247 "RockBoxUISimulator", "ARCHOS JukeBox",
248 WS_VISIBLE | WS_SYSMENU | WS_OVERLAPPEDWINDOW, 248 WS_VISIBLE | WS_SYSMENU | WS_OVERLAPPEDWINDOW,
249 CW_USEDEFAULT, CW_USEDEFAULT, 249 CW_USEDEFAULT, CW_USEDEFAULT,
250 UI_WIDTH + GetSystemMetrics (SM_CXSIZEFRAME) * 2, 250 UI_WIDTH + GetSystemMetrics (SM_CXSIZEFRAME) * 2 +4,
251 UI_HEIGHT + GetSystemMetrics (SM_CYSIZEFRAME) * 2 + GetSystemMetrics (SM_CYSMCAPTION), 251 UI_HEIGHT + GetSystemMetrics (SM_CYSIZEFRAME) * 2 + GetSystemMetrics (SM_CYSMCAPTION) +4,
252 NULL, NULL, GetModuleHandle (NULL), NULL); 252 NULL, NULL, GetModuleHandle (NULL), NULL);
253 253
254 if (hGUIWnd == NULL) 254 if (hGUIWnd == NULL)