(svn r7124) -Fix (r37xx): sizeof(bool) = 4 for (certain) OSX do not assume it is 1. This would break

the saving of certain values to the config. Thanks PandaMojo ford ebugging.
This commit is contained in:
Darkvater 2006-11-10 11:45:50 +00:00
parent ebd054b8d8
commit 82f7140357
1 changed files with 2 additions and 0 deletions

View File

@ -776,6 +776,8 @@ static void ini_save_settings(IniFile *ini, const SettingDesc *sd, const char *g
case SDT_MANYOFMANY:
switch (GetVarMemType(sld->conv)) {
case SLE_VAR_BL:
if (*(bool*)ptr == (bool)(unsigned long)p) continue;
break;
case SLE_VAR_I8:
case SLE_VAR_U8:
if (*(byte*)ptr == (byte)(unsigned long)p) continue;