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:
parent
bb152d468e
commit
b45809a33e
2 changed files with 2 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue