mirror of
https://github.com/FunkyFr3sh/cnc-ddraw.git
synced 2025-03-25 01:57:47 +01:00
add support for Soldiers At War
This commit is contained in:
parent
93319d4c83
commit
9ac0054f1a
@ -377,6 +377,7 @@ Wine (Linux/macOS/Android) only: override `ddraw` in [winecfg](https://wiki.wine
|
|||||||
- SimCoaster / Theme Park Inc
|
- SimCoaster / Theme Park Inc
|
||||||
- Simon the Sorcerer 1/2 (windows 95 version)
|
- Simon the Sorcerer 1/2 (windows 95 version)
|
||||||
- Sonic 3D Blast
|
- Sonic 3D Blast
|
||||||
|
- Soldiers At War
|
||||||
- Space Rangers
|
- Space Rangers
|
||||||
- Spec Ops - Ranger Assault (software mode)
|
- Spec Ops - Ranger Assault (software mode)
|
||||||
- SpongeBob SquarePants: Typing
|
- SpongeBob SquarePants: Typing
|
||||||
|
@ -1724,6 +1724,11 @@ static void cfg_create_ini()
|
|||||||
"maxgameticks=30\n"
|
"maxgameticks=30\n"
|
||||||
"limiter_type=4\n"
|
"limiter_type=4\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
"; Soldiers At War\n"
|
||||||
|
"[SAW_Game]\n"
|
||||||
|
"maxgameticks=30\n"
|
||||||
|
"limiter_type=4\n"
|
||||||
|
"\n"
|
||||||
"; The Curse Of Monkey Island\n"
|
"; The Curse Of Monkey Island\n"
|
||||||
"[COMI]\n"
|
"[COMI]\n"
|
||||||
"singlecpu=false\n"
|
"singlecpu=false\n"
|
||||||
|
@ -986,7 +986,7 @@ int WINAPI fake_GetDeviceCaps(HDC hdc, int index)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (width && WindowFromDC(hdc) == GetDesktopWindow())
|
if (width && ((g_ddraw.hwnd && WindowFromDC(hdc) == g_ddraw.hwnd) || WindowFromDC(hdc) == GetDesktopWindow()))
|
||||||
{
|
{
|
||||||
if (index == HORZRES)
|
if (index == HORZRES)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user