Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Default window size: Increase to 1024x576, aspect ratio 16:9
  • Loading branch information
paramat committed Jul 15, 2017
1 parent bdac127 commit fafa512
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions builtin/settingtypes.txt
Expand Up @@ -481,10 +481,10 @@ pause_fps_max (FPS in pause menu) int 20
viewing_range (Viewing range) int 100 20 4000

# Width component of the initial window size.
screen_w (Screen width) int 800
screen_w (Screen width) int 1024

# Height component of the initial window size.
screen_h (Screen height) int 600
screen_h (Screen height) int 576

# Save window size automatically when modified.
autosave_screensize (Autosave Screen Size) bool true
Expand Down
4 changes: 2 additions & 2 deletions minetest.conf.example
Expand Up @@ -550,11 +550,11 @@

# Width component of the initial window size.
# type: int
# screen_w = 800
# screen_w = 1024

# Height component of the initial window size.
# type: int
# screen_h = 600
# screen_h = 576

# Save window size automatically when modified.
# type: bool
Expand Down
4 changes: 2 additions & 2 deletions src/defaultsettings.cpp
Expand Up @@ -124,8 +124,8 @@ void set_default_settings(Settings *settings)
settings->setDefault("fps_max", "60");
settings->setDefault("pause_fps_max", "20");
settings->setDefault("viewing_range", "100");
settings->setDefault("screen_w", "800");
settings->setDefault("screen_h", "600");
settings->setDefault("screen_w", "1024");
settings->setDefault("screen_h", "576");
settings->setDefault("autosave_screensize", "true");
settings->setDefault("fullscreen", "false");
settings->setDefault("fullscreen_bpp", "24");
Expand Down

0 comments on commit fafa512

Please sign in to comment.