mirror of
https://github.com/FunkyFr3sh/cnc-ddraw.git
synced 2025-03-24 17:49:52 +01:00
remove obsolete settings
This commit is contained in:
parent
75ed1595c6
commit
97718b9a19
@ -55,8 +55,6 @@ typedef struct CNCDDRAWCONFIG
|
|||||||
BOOL singlecpu;
|
BOOL singlecpu;
|
||||||
int resolutions;
|
int resolutions;
|
||||||
int fixchilds;
|
int fixchilds;
|
||||||
BOOL hook_peekmessage;
|
|
||||||
BOOL hook_getmessage;
|
|
||||||
|
|
||||||
/* Undocumented settings */
|
/* Undocumented settings */
|
||||||
|
|
||||||
|
25
src/config.c
25
src/config.c
@ -67,8 +67,6 @@ void cfg_load()
|
|||||||
GET_BOOL(g_config.singlecpu, "singlecpu", TRUE);
|
GET_BOOL(g_config.singlecpu, "singlecpu", TRUE);
|
||||||
GET_INT(g_config.resolutions, "resolutions", RESLIST_NORMAL);
|
GET_INT(g_config.resolutions, "resolutions", RESLIST_NORMAL);
|
||||||
GET_INT(g_config.fixchilds, "fixchilds", FIX_CHILDS_DETECT_PAINT);
|
GET_INT(g_config.fixchilds, "fixchilds", FIX_CHILDS_DETECT_PAINT);
|
||||||
GET_BOOL(g_config.hook_peekmessage, "hook_peekmessage", FALSE);
|
|
||||||
GET_BOOL(g_config.hook_getmessage, "hook_getmessage", FALSE);
|
|
||||||
GET_STRING("win_version", "", g_config.win_version, sizeof(g_config.win_version));
|
GET_STRING("win_version", "", g_config.win_version, sizeof(g_config.win_version));
|
||||||
|
|
||||||
/* Undocumented settings */
|
/* Undocumented settings */
|
||||||
@ -295,10 +293,6 @@ static void cfg_create_ini()
|
|||||||
"; Note: Disables upscaling if a child window was detected (to ensure the game is fully playable, may look weird though)\n"
|
"; Note: Disables upscaling if a child window was detected (to ensure the game is fully playable, may look weird though)\n"
|
||||||
"fixchilds=2\n"
|
"fixchilds=2\n"
|
||||||
"\n"
|
"\n"
|
||||||
"; Enable one of the following settings if your cursor doesn't work properly when upscaling is enabled\n"
|
|
||||||
"hook_peekmessage=false\n"
|
|
||||||
"hook_getmessage=false\n"
|
|
||||||
"\n"
|
|
||||||
"\n"
|
"\n"
|
||||||
"; Undocumented settings - You may or may not change these (You should rather focus on the settings above)\n"
|
"; Undocumented settings - You may or may not change these (You should rather focus on the settings above)\n"
|
||||||
"releasealt=false\n"
|
"releasealt=false\n"
|
||||||
@ -481,7 +475,6 @@ static void cfg_create_ini()
|
|||||||
"\n"
|
"\n"
|
||||||
"; Axis & Allies\n"
|
"; Axis & Allies\n"
|
||||||
"[AxisAllies]\n"
|
"[AxisAllies]\n"
|
||||||
"hook_peekmessage=true\n"
|
|
||||||
"maxgameticks=60\n"
|
"maxgameticks=60\n"
|
||||||
"\n"
|
"\n"
|
||||||
"; Barney - Secret of the Rainbow\n"
|
"; Barney - Secret of the Rainbow\n"
|
||||||
@ -825,7 +818,6 @@ static void cfg_create_ini()
|
|||||||
"; Escape Velocity Nova\n"
|
"; Escape Velocity Nova\n"
|
||||||
"[EV Nova]\n"
|
"[EV Nova]\n"
|
||||||
"nonexclusive=true\n"
|
"nonexclusive=true\n"
|
||||||
"hook_peekmessage=true\n"
|
|
||||||
"rgb555=true\n"
|
"rgb555=true\n"
|
||||||
"keytogglefullscreen=0x46\n"
|
"keytogglefullscreen=0x46\n"
|
||||||
"adjmouse=true\n"
|
"adjmouse=true\n"
|
||||||
@ -840,18 +832,10 @@ static void cfg_create_ini()
|
|||||||
"nonexclusive=true\n"
|
"nonexclusive=true\n"
|
||||||
"adjmouse=true\n"
|
"adjmouse=true\n"
|
||||||
"\n"
|
"\n"
|
||||||
"; Enemy Infestation\n"
|
|
||||||
"[EI]\n"
|
|
||||||
"hook_getmessage=true\n"
|
|
||||||
"\n"
|
|
||||||
"; Fairy Tale About Father Frost, Ivan and Nastya\n"
|
"; Fairy Tale About Father Frost, Ivan and Nastya\n"
|
||||||
"[mrazik]\n"
|
"[mrazik]\n"
|
||||||
"guard_lines=0\n"
|
"guard_lines=0\n"
|
||||||
"\n"
|
"\n"
|
||||||
"; Final Liberation: Warhammer Epic 40000\n"
|
|
||||||
"[Epic40k]\n"
|
|
||||||
"hook_peekmessage=true\n"
|
|
||||||
"\n"
|
|
||||||
"; Future Cop - L.A.P.D.\n"
|
"; Future Cop - L.A.P.D.\n"
|
||||||
"[FCopLAPD]\n"
|
"[FCopLAPD]\n"
|
||||||
"nonexclusive=true\n"
|
"nonexclusive=true\n"
|
||||||
@ -1119,10 +1103,6 @@ static void cfg_create_ini()
|
|||||||
"maintas=false\n"
|
"maintas=false\n"
|
||||||
"boxing=false\n"
|
"boxing=false\n"
|
||||||
"\n"
|
"\n"
|
||||||
"; Lionheart\n"
|
|
||||||
"[Lionheart]\n"
|
|
||||||
"hook_peekmessage=true\n"
|
|
||||||
"\n"
|
|
||||||
"; Madeline 1st Grade Math\n"
|
"; Madeline 1st Grade Math\n"
|
||||||
"[madmath1]\n"
|
"[madmath1]\n"
|
||||||
"nonexclusive=true\n"
|
"nonexclusive=true\n"
|
||||||
@ -1179,7 +1159,6 @@ static void cfg_create_ini()
|
|||||||
"; New Robinson\n"
|
"; New Robinson\n"
|
||||||
"[ROBY]\n"
|
"[ROBY]\n"
|
||||||
"adjmouse=true\n"
|
"adjmouse=true\n"
|
||||||
"hook_peekmessage=true\n"
|
|
||||||
"\n"
|
"\n"
|
||||||
"; Nancy Drew (All games)\n"
|
"; Nancy Drew (All games)\n"
|
||||||
"[Game/3]\n"
|
"[Game/3]\n"
|
||||||
@ -1400,10 +1379,6 @@ static void cfg_create_ini()
|
|||||||
"[StarCraft]\n"
|
"[StarCraft]\n"
|
||||||
"game_handles_close=true\n"
|
"game_handles_close=true\n"
|
||||||
"\n"
|
"\n"
|
||||||
"; Space Rangers\n"
|
|
||||||
"[Rangers]\n"
|
|
||||||
"hook_peekmessage=true\n"
|
|
||||||
"\n"
|
|
||||||
"; SPYFox: Hold the Mustard\n"
|
"; SPYFox: Hold the Mustard\n"
|
||||||
"[mustard]\n"
|
"[mustard]\n"
|
||||||
"renderer=gdi\n"
|
"renderer=gdi\n"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user