clean up config.c

This commit is contained in:
FunkyFr3sh 2023-09-23 17:48:06 +02:00
parent 58d52e396c
commit 90dd010bbf
7 changed files with 13 additions and 21 deletions

View file

@ -56,24 +56,13 @@ void cfg_load()
GET_BOOL(g_config.noactivateapp, "noactivateapp", FALSE);
GET_INT(g_config.maxgameticks, "maxgameticks", 0);
GET_INT(g_config.minfps, "minfps", 0);
GET_BOOL(g_config.nonexclusive, "nonexclusive", FALSE);
GET_BOOL(g_config.singlecpu, "singlecpu", TRUE);
GET_INT(g_config.resolutions, "resolutions", RESLIST_NORMAL);
GET_INT(g_config.fixchilds, "fixchilds", FIX_CHILDS_DETECT_PAINT);
GET_BOOL(g_config.hook_peekmessage, "hook_peekmessage", FALSE);
GET_INT(g_config.minfps, "minfps", 0);
if (g_config.minfps > 1000)
{
g_config.minfps = 1000;
}
if (g_config.minfps > 0)
{
g_config.minfps_tick_len = (DWORD)(1000.0f / g_config.minfps);
}
/* Undocumented settings */
GET_BOOL(g_config.releasealt, "releasealt", FALSE);
@ -113,10 +102,7 @@ void cfg_load()
GET_BOOL(g_config.stronghold_hack, "stronghold_hack", FALSE);
GET_BOOL(g_config.mgs_hack, "mgs_hack", FALSE);
if (g_config.infantryhack)
{
GameHandlesClose = TRUE;
}
GameHandlesClose = GameHandlesClose || g_config.infantryhack;
}
void cfg_save()