forked from len0rd/rockbox
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
This commit is contained in:
parent
1707fd94fc
commit
c561e53948
1 changed files with 2 additions and 2 deletions
|
@ -247,8 +247,8 @@ BOOL GUIStartup ()
|
|||
"RockBoxUISimulator", "ARCHOS JukeBox",
|
||||
WS_VISIBLE | WS_SYSMENU | WS_OVERLAPPEDWINDOW,
|
||||
CW_USEDEFAULT, CW_USEDEFAULT,
|
||||
UI_WIDTH + GetSystemMetrics (SM_CXSIZEFRAME) * 2,
|
||||
UI_HEIGHT + GetSystemMetrics (SM_CYSIZEFRAME) * 2 + GetSystemMetrics (SM_CYSMCAPTION),
|
||||
UI_WIDTH + GetSystemMetrics (SM_CXSIZEFRAME) * 2 +4,
|
||||
UI_HEIGHT + GetSystemMetrics (SM_CYSIZEFRAME) * 2 + GetSystemMetrics (SM_CYSMCAPTION) +4,
|
||||
NULL, NULL, GetModuleHandle (NULL), NULL);
|
||||
|
||||
if (hGUIWnd == NULL)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue