mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-13 15:12:30 -05:00
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",
|
"RockBoxUISimulator", "ARCHOS JukeBox",
|
||||||
WS_VISIBLE | WS_SYSMENU | WS_OVERLAPPEDWINDOW,
|
WS_VISIBLE | WS_SYSMENU | WS_OVERLAPPEDWINDOW,
|
||||||
CW_USEDEFAULT, CW_USEDEFAULT,
|
CW_USEDEFAULT, CW_USEDEFAULT,
|
||||||
UI_WIDTH + GetSystemMetrics (SM_CXSIZEFRAME) * 2,
|
UI_WIDTH + GetSystemMetrics (SM_CXSIZEFRAME) * 2 +4,
|
||||||
UI_HEIGHT + GetSystemMetrics (SM_CYSIZEFRAME) * 2 + GetSystemMetrics (SM_CYSMCAPTION),
|
UI_HEIGHT + GetSystemMetrics (SM_CYSIZEFRAME) * 2 + GetSystemMetrics (SM_CYSMCAPTION) +4,
|
||||||
NULL, NULL, GetModuleHandle (NULL), NULL);
|
NULL, NULL, GetModuleHandle (NULL), NULL);
|
||||||
|
|
||||||
if (hGUIWnd == NULL)
|
if (hGUIWnd == NULL)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue