From cc7880fba55e945b8a37fa8aca5a7faa065d3f6c Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Sat, 12 Dec 2015 12:06:53 -0300 Subject: -added windowed mode with -w, fixes #3020 -changed default windowed resolution to 1280x720 --- platform/osx/os_osx.mm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'platform/osx/os_osx.mm') diff --git a/platform/osx/os_osx.mm b/platform/osx/os_osx.mm index 4990d04ab6..a2c4737aec 100644 --- a/platform/osx/os_osx.mm +++ b/platform/osx/os_osx.mm @@ -838,8 +838,8 @@ const char * OS_OSX::get_video_driver_name(int p_driver) const { OS::VideoMode OS_OSX::get_default_video_mode() const { VideoMode vm; - vm.width=800; - vm.height=600; + vm.width=1280; + vm.height=720; vm.fullscreen=false; vm.resizable=true; return vm; -- cgit v1.2.3