Fix typo in Config.cpp that resulted in fullscreenonlaunch always being set to true.
This commit is contained in:
parent
32bb4d7db5
commit
0843e2a6fc
1 changed files with 1 additions and 1 deletions
|
@ -234,7 +234,7 @@ void Config::Save()
|
||||||
graphics->Set("VertexCache", bVertexCache);
|
graphics->Set("VertexCache", bVertexCache);
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
graphics->Set("FullScreen", bFullScreen);
|
graphics->Set("FullScreen", bFullScreen);
|
||||||
graphics->Set("FullScreenOnLaunch", &bFullScreenOnLaunch);
|
graphics->Set("FullScreenOnLaunch", bFullScreenOnLaunch);
|
||||||
#endif
|
#endif
|
||||||
#ifdef BLACKBERRY
|
#ifdef BLACKBERRY
|
||||||
graphics->Set("PartialStretch", bPartialStretch);
|
graphics->Set("PartialStretch", bPartialStretch);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue