summaryrefslogtreecommitdiff
path: root/core/os
diff options
context:
space:
mode:
authorGeorge Marques <george@gmarqu.es>2016-01-24 14:42:46 -0200
committerGeorge Marques <george@gmarqu.es>2016-01-24 17:52:33 -0200
commitf4a39692b9a5e3792f8469d02d0ea61a91a98f2f (patch)
treec52eab00a8d7dfafc4ad563e44cf18de6709271b /core/os
parent35a28f34426eb6c44a5e321bbd630c64d8b38de0 (diff)
Change default window size for desktop
Fix #3149
Diffstat (limited to 'core/os')
-rw-r--r--core/os/os.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/os/os.h b/core/os/os.h
index bc3fad302a..e53980a8fe 100644
--- a/core/os/os.h
+++ b/core/os/os.h
@@ -76,7 +76,7 @@ public:
bool fullscreen;
bool resizable;
float get_aspect() const { return (float)width/(float)height; }
- VideoMode(int p_width=1280,int p_height=720,bool p_fullscreen=false, bool p_resizable = true) {width=p_width; height=p_height; fullscreen=p_fullscreen; resizable = p_resizable; }
+ VideoMode(int p_width=1024,int p_height=600,bool p_fullscreen=false, bool p_resizable = true) {width=p_width; height=p_height; fullscreen=p_fullscreen; resizable = p_resizable; }
};
protected:
friend class Main;