1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-25 01:57:47 +01:00

add preset for Nightlong - Union City Conspiracy

This commit is contained in:
FunkyFr3sh 2024-12-16 06:43:32 +01:00
parent c35ca60307
commit 82386fbbc4
3 changed files with 8 additions and 4 deletions

View File

@ -74,6 +74,7 @@ typedef struct CNCDDRAWCONFIG
BOOL no_dinput_hook; BOOL no_dinput_hook;
BOOL direct3d_passthrough; BOOL direct3d_passthrough;
BOOL center_cursor_fix; BOOL center_cursor_fix;
BOOL allow_wm_nchittest;
char fake_mode[128]; char fake_mode[128];
BOOL lock_mouse_top_left; BOOL lock_mouse_top_left;
char win_version[32]; char win_version[32];
@ -106,7 +107,6 @@ typedef struct CNCDDRAWCONFIG
BOOL carma95_hack; BOOL carma95_hack;
BOOL sirtech_hack; BOOL sirtech_hack;
BOOL flightsim98_hack; BOOL flightsim98_hack;
BOOL seventhlegion_hack;
} CNCDDRAWCONFIG; } CNCDDRAWCONFIG;

View File

@ -87,6 +87,7 @@ void cfg_load()
GET_BOOL(g_config.no_dinput_hook, "no_dinput_hook", FALSE); GET_BOOL(g_config.no_dinput_hook, "no_dinput_hook", FALSE);
GET_BOOL(g_config.direct3d_passthrough, "direct3d_passthrough", FALSE); GET_BOOL(g_config.direct3d_passthrough, "direct3d_passthrough", FALSE);
GET_BOOL(g_config.center_cursor_fix, "center_cursor_fix", FALSE); GET_BOOL(g_config.center_cursor_fix, "center_cursor_fix", FALSE);
GET_BOOL(g_config.allow_wm_nchittest, "allow_wm_nchittest", FALSE);
GET_STRING("fake_mode", "", g_config.fake_mode, sizeof(g_config.fake_mode)); GET_STRING("fake_mode", "", g_config.fake_mode, sizeof(g_config.fake_mode));
GET_BOOL(g_config.lock_mouse_top_left, "lock_mouse_top_left", FALSE); GET_BOOL(g_config.lock_mouse_top_left, "lock_mouse_top_left", 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));
@ -116,7 +117,6 @@ void cfg_load()
GET_BOOL(g_config.carma95_hack, "carma95_hack", FALSE); GET_BOOL(g_config.carma95_hack, "carma95_hack", FALSE);
GET_BOOL(g_config.sirtech_hack, "sirtech_hack", FALSE); GET_BOOL(g_config.sirtech_hack, "sirtech_hack", FALSE);
GET_BOOL(g_config.flightsim98_hack, "flightsim98_hack", FALSE); GET_BOOL(g_config.flightsim98_hack, "flightsim98_hack", FALSE);
GET_BOOL(g_config.seventhlegion_hack, "seventhlegion_hack", FALSE);
GameHandlesClose = GameHandlesClose || g_config.infantryhack; GameHandlesClose = GameHandlesClose || g_config.infantryhack;
@ -395,7 +395,7 @@ static void cfg_create_ini()
"; 7th Legion\n" "; 7th Legion\n"
"[legion]\n" "[legion]\n"
"maxgameticks=25\n" "maxgameticks=25\n"
"seventhlegion_hack=true\n" "allow_wm_nchittest=true\n"
"singlecpu=false\n" "singlecpu=false\n"
"\n" "\n"
"; Atrox\n" "; Atrox\n"
@ -1331,6 +1331,10 @@ static void cfg_create_ini()
"checkfile=.\\nox.cfg\n" "checkfile=.\\nox.cfg\n"
"maxgameticks=125\n" "maxgameticks=125\n"
"\n" "\n"
"; Nightlong - Union City Conspiracy\n"
"[NL]\n"
"allow_wm_nchittest=true\n"
"\n"
"; Outlaws\n" "; Outlaws\n"
"[olwin]\n" "[olwin]\n"
"noactivateapp=true\n" "noactivateapp=true\n"

View File

@ -101,7 +101,7 @@ LRESULT CALLBACK fake_WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam
} }
case WM_NCHITTEST: case WM_NCHITTEST:
{ {
if (g_config.seventhlegion_hack) if (g_config.allow_wm_nchittest)
break; break;
LRESULT result = DefWindowProc(hWnd, uMsg, wParam, lParam); LRESULT result = DefWindowProc(hWnd, uMsg, wParam, lParam);