Make fullscreen default to false.

Om my LCD fullscreen results in an invalid mode and gives a black
screen and I need to use ctrl-F to see something again.
This commit is contained in:
Mark de Wever 2008-01-13 09:24:02 +00:00
parent bb152d468e
commit b45809a33e
2 changed files with 2 additions and 1 deletions

View file

@ -88,6 +88,7 @@ Version 1.3.13+svn:
games
* make sure the team number is reset in single player linger mode
(bug #10692)
* fullscreen now defaults to false
Version 1.3.13:
* campaigns:

View file

@ -92,7 +92,7 @@ config* get_prefs(){
bool fullscreen()
{
return utils::string_bool(get("fullscreen"), true);
return utils::string_bool(get("fullscreen"), false);
}
void _set_fullscreen(bool ison)