Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed ZComploc and Zfreeze values being incorrectly saved.
  • Loading branch information
SizzlingCalamari committed Nov 14, 2013
1 parent 0fced65 commit 2703cae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Core/VideoBackends/Software/Src/SWVideoConfig.cpp
Expand Up @@ -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);

Expand Down

0 comments on commit 2703cae

Please sign in to comment.