mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
f85a4c0467
commit
b0a0508c85
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue