-added windowed mode with -w, fixes #3020

-changed default windowed resolution to 1280x720
This commit is contained in:
Juan Linietsky 2015-12-12 12:06:53 -03:00
parent ec8f0d7eb9
commit cc7880fba5
5 changed files with 16 additions and 11 deletions

View file

@ -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;