Fixed ZComploc and Zfreeze values being incorrectly saved.

This commit is contained in:
Jordan Cristiano 2013-11-14 03:15:03 -05:00
parent 0fced651a5
commit 2703cae8d3
1 changed files with 2 additions and 2 deletions

View File

@ -65,8 +65,8 @@ void SWVideoConfig::Save(const char* ini_file)
iniFile.Set("Hardware", "RenderToMainframe", renderToMainframe);
iniFile.Set("Rendering", "HwRasterizer", bHwRasterizer);
iniFile.Set("Rendering", "ZComploc", &bZComploc);
iniFile.Set("Rendering", "ZFreeze", &bZFreeze);
iniFile.Set("Rendering", "ZComploc", bZComploc);
iniFile.Set("Rendering", "ZFreeze", bZFreeze);
iniFile.Set("Info", "ShowStats", bShowStats);