- remove priority changing code entirely - replace with vid_lowerinbackground which activates FPS capping in background

This commit is contained in:
Rachael Alexanderson 2025-02-08 21:42:14 -05:00
parent e12ef80745
commit 047e1e8b74
No known key found for this signature in database
GPG key ID: 26A8ACCE97115EE0
2 changed files with 6 additions and 12 deletions

View file

@ -128,7 +128,6 @@ EXTERN_CVAR(Bool, i_pauseinbackground);
CVAR (Bool, k_allowfullscreentoggle, true, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
CVAR (Bool, i_allowprioritychange, true, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
static void I_CheckGUICapture ()
{
@ -486,17 +485,6 @@ LRESULT CALLBACK WndProc (HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
case WM_ACTIVATEAPP:
AppActive = (wParam == TRUE);
if (!i_pauseinbackground && i_allowprioritychange)
{
if (wParam)
{
SetPriorityClass (GetCurrentProcess (), INGAME_PRIORITY_CLASS);
}
else if (!noidle && !(sysCallbacks.NetGame && sysCallbacks.NetGame()))
{
SetPriorityClass (GetCurrentProcess (), IDLE_PRIORITY_CLASS);
}
}
S_SetSoundPaused (wParam);
break;

View file

@ -88,6 +88,8 @@ extern FString savegamefile;
extern short consistancy[MAXPLAYERS][BACKUPTICS];
extern bool AppActive;
#define netbuffer (doomcom.data)
enum { NET_PeerToPeer, NET_PacketServer };
@ -153,6 +155,7 @@ static int oldentertics;
extern bool advancedemo;
CVAR(Bool, vid_dontdowait, false, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
CVAR(Bool, vid_lowerinbackground, true, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
CVAR(Bool, net_ticbalance, false, CVAR_SERVERINFO | CVAR_NOSAVE)
CUSTOM_CVAR(Int, net_extratic, 0, CVAR_SERVERINFO | CVAR_NOSAVE)
@ -1885,6 +1888,9 @@ void TryRunTics (void)
if (vid_dontdowait && ((vid_maxfps > 0) || (vid_vsync == true)))
doWait = false;
if (!AppActive && vid_lowerinbackground)
doWait = true;
// get real tics
if (doWait)
{