The default window position is now CW_USEDEFAULT instead of 0, so upon the first launch the window isn't placed in the top-left corner.
This commit is contained in:
parent
ac130aeb14
commit
0b5e1927c1
|
@ -1195,8 +1195,8 @@ int WINAPI WinMain (HINSTANCE hThisInstance,
|
||||||
GPU_rotation = GetPrivateProfileInt("Video","Window Rotate", 0, IniName);
|
GPU_rotation = GetPrivateProfileInt("Video","Window Rotate", 0, IniName);
|
||||||
ForceRatio = GetPrivateProfileInt("Video","Window Force Ratio", 1, IniName);
|
ForceRatio = GetPrivateProfileInt("Video","Window Force Ratio", 1, IniName);
|
||||||
FpsDisplay = GetPrivateProfileInt("Display","Display Fps", 0, IniName);
|
FpsDisplay = GetPrivateProfileInt("Display","Display Fps", 0, IniName);
|
||||||
WndX = GetPrivateProfileInt("Video","WindowPosX", 0, IniName);
|
WndX = GetPrivateProfileInt("Video","WindowPosX", CW_USEDEFAULT, IniName);
|
||||||
WndY = GetPrivateProfileInt("Video","WindowPosY", 0, IniName);
|
WndY = GetPrivateProfileInt("Video","WindowPosY", CW_USEDEFAULT, IniName);
|
||||||
frameCounterDisplay = GetPrivateProfileInt("Display","FrameCounter", 0, IniName);
|
frameCounterDisplay = GetPrivateProfileInt("Display","FrameCounter", 0, IniName);
|
||||||
//sprintf(text, "%s", DESMUME_NAME_AND_VERSION);
|
//sprintf(text, "%s", DESMUME_NAME_AND_VERSION);
|
||||||
MainWindow = new WINCLASS(CLASSNAME, hThisInstance);
|
MainWindow = new WINCLASS(CLASSNAME, hThisInstance);
|
||||||
|
|
Loading…
Reference in New Issue