add preset for TLC launcher

This commit is contained in:
FunkyFr3sh 2024-05-31 04:55:55 +02:00
parent fd303a3191
commit a08be3e922
3 changed files with 15 additions and 1 deletions

View file

@ -487,7 +487,7 @@ HRESULT __stdcall IDirectDraw__RestoreAllSurfaces(IDirectDrawImpl* This)
HRESULT __stdcall IDirectDraw__TestCooperativeLevel(IDirectDrawImpl* This)
{
TRACE_EXT("-> %s(This=%p)\n", __FUNCTION__, This);
HRESULT ret = DD_OK;
HRESULT ret = g_config.tlc_hack ? DDERR_NOEXCLUSIVEMODE : DD_OK;
TRACE_EXT("<- %s\n", __FUNCTION__);
return ret;
}