ZZOGL: Fix an incorrect formatting argument in the Win32 config.

the _u32 should be passed, not the direct union itself.
This commit is contained in:
Lioncash 2014-07-14 21:31:44 -04:00
parent f85a4c0467
commit b0a0508c85
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ void SaveConfig()
WritePrivateProfileString(L"Settings", L"Bilinear", szValue, iniFile);
wxSprintf(szValue, L"%u", conf.zz_options);
WritePrivateProfileString(L"Settings", L"ZZOptions", szValue, iniFile);
wxSprintf(szValue, L"%u", conf.hacks);
wxSprintf(szValue, L"%u", conf.hacks._u32);
WritePrivateProfileString(L"Settings", L"AdvancedOptions", szValue, iniFile);
wxSprintf(szValue, L"%u", conf.width);
WritePrivateProfileString(L"Settings", L"Width", szValue, iniFile);