From fcfbd4e16327eb37664dd024aba6b8e0ba748b06 Mon Sep 17 00:00:00 2001 From: auria Date: Sun, 29 Apr 2012 13:22:41 +0000 Subject: [PATCH] Change the default screen size from 800x600 to 1024x768... everyone supports more than 800x600 nowadays and that is just too small git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@11175 178a84e3-b1eb-0310-8ba1-8eac791a3b58 --- src/config/user_config.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/config/user_config.hpp b/src/config/user_config.hpp index 25baea4fc..541c5c902 100644 --- a/src/config/user_config.hpp +++ b/src/config/user_config.hpp @@ -352,19 +352,19 @@ namespace UserConfigParams PARAM_DEFAULT( GroupUserConfigParam("Video", "Video Settings") ); PARAM_PREFIX IntUserConfigParam m_width - PARAM_DEFAULT( IntUserConfigParam(800, "width", &m_video_group, + PARAM_DEFAULT( IntUserConfigParam(1024, "width", &m_video_group, "Screen/window width in pixels") ); PARAM_PREFIX IntUserConfigParam m_height - PARAM_DEFAULT( IntUserConfigParam(600, "height", &m_video_group, + PARAM_DEFAULT( IntUserConfigParam(768, "height", &m_video_group, "Screen/window height in pixels") ); PARAM_PREFIX BoolUserConfigParam m_fullscreen PARAM_DEFAULT( BoolUserConfigParam(false, "fullscreen", &m_video_group) ); PARAM_PREFIX IntUserConfigParam m_prev_width - PARAM_DEFAULT( IntUserConfigParam(800, "prev_width", + PARAM_DEFAULT( IntUserConfigParam(1024, "prev_width", &m_video_group, "Previous screen/window width") ); PARAM_PREFIX IntUserConfigParam m_prev_height - PARAM_DEFAULT( IntUserConfigParam(600, "prev_height", + PARAM_DEFAULT( IntUserConfigParam(768, "prev_height", &m_video_group,"Previous screen/window height") ); PARAM_PREFIX BoolUserConfigParam m_prev_fullscreen PARAM_DEFAULT( BoolUserConfigParam(false, "prev_fullscreen",