Fix typo in Config.cpp that resulted in fullscreenonlaunch always being set to true.

This commit is contained in:
The Dax 2013-07-10 15:39:52 -04:00
parent 32bb4d7db5
commit 0843e2a6fc

View File

@ -234,7 +234,7 @@ void Config::Save()
graphics->Set("VertexCache", bVertexCache);
#ifdef _WIN32
graphics->Set("FullScreen", bFullScreen);
graphics->Set("FullScreenOnLaunch", &bFullScreenOnLaunch);
graphics->Set("FullScreenOnLaunch", bFullScreenOnLaunch);
#endif
#ifdef BLACKBERRY
graphics->Set("PartialStretch", bPartialStretch);