From: Ingo Ruhnke Date: Sat, 30 Aug 2014 17:39:31 +0000 (+0200) Subject: Changed default window size from 800x600 to 1280x800 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=2448a621c7dadcdd5dd59f9cd43a5d5e5c76c74c;p=supertux.git Changed default window size from 800x600 to 1280x800 --- diff --git a/src/supertux/command_line_arguments.cpp b/src/supertux/command_line_arguments.cpp index 0e97b7550..e40503b8d 100644 --- a/src/supertux/command_line_arguments.cpp +++ b/src/supertux/command_line_arguments.cpp @@ -177,8 +177,8 @@ CommandLineArguments::parse_args(int argc, char** argv) { use_fullscreen = false; - window_size = Size(800, 600); - fullscreen_size = Size(800, 600); + window_size = Size(1280, 800); + fullscreen_size = Size(1280, 800); fullscreen_refresh_rate = 0; aspect_size = Size(0, 0); // auto detect } diff --git a/src/supertux/gameconfig.cpp b/src/supertux/gameconfig.cpp index 879be82ba..c7d7778b8 100644 --- a/src/supertux/gameconfig.cpp +++ b/src/supertux/gameconfig.cpp @@ -31,7 +31,7 @@ Config::Config() : profile(1), fullscreen_size(0, 0), fullscreen_refresh_rate(0), - window_size(800, 600), + window_size(1280, 800), aspect_size(0, 0), // auto detect magnification(0.0f), use_fullscreen(false),