diff options
| author | Juan Linietsky <reduzio@gmail.com> | 2016-01-24 17:44:26 -0300 |
|---|---|---|
| committer | Juan Linietsky <reduzio@gmail.com> | 2016-01-24 17:44:26 -0300 |
| commit | 72d1f2ef30b69b6dce27353ab28cfb4e7dd9f9a4 (patch) | |
| tree | e16423802f2c800acfc896495b78f5dd4f78f555 /core/os/os.h | |
| parent | 48d2b7f4be56a463551c78da84696ea0909e5c0f (diff) | |
| parent | f4a39692b9a5e3792f8469d02d0ea61a91a98f2f (diff) | |
Merge pull request #3437 from vnen/fix-3149
Change default video mode for X11
Diffstat (limited to 'core/os/os.h')
| -rw-r--r-- | core/os/os.h | 2 |
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; |