mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 12:12:28 +00:00
- On Windows, Godot now goes fullscreen without video mode change.
This commit is contained in:
parent
e82dc40205
commit
8b8e26c0bd
@ -982,8 +982,11 @@ void OS_Windows::initialize(const VideoMode& p_desired,int p_video_driver,int p_
|
||||
DEVMODE current;
|
||||
memset(¤t,0,sizeof(current));
|
||||
EnumDisplaySettings(NULL, ENUM_CURRENT_SETTINGS, ¤t);
|
||||
|
||||
WindowRect.right = current.dmPelsWidth;
|
||||
WindowRect.bottom = current.dmPelsHeight;
|
||||
|
||||
DEVMODE dmScreenSettings;
|
||||
/* DEVMODE dmScreenSettings;
|
||||
memset(&dmScreenSettings,0,sizeof(dmScreenSettings));
|
||||
dmScreenSettings.dmSize=sizeof(dmScreenSettings);
|
||||
dmScreenSettings.dmPelsWidth = video_mode.width;
|
||||
@ -995,7 +998,7 @@ void OS_Windows::initialize(const VideoMode& p_desired,int p_video_driver,int p_
|
||||
if (err!=DISP_CHANGE_SUCCESSFUL) {
|
||||
|
||||
video_mode.fullscreen=false;
|
||||
}
|
||||
}*/
|
||||
}
|
||||
|
||||
DWORD dwExStyle;
|
||||
|
Loading…
Reference in New Issue
Block a user