mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-04-04 17:08:44 +00:00
- remove priority changing code entirely - replace with vid_lowerinbackground
which activates FPS capping in background
This commit is contained in:
parent
e12ef80745
commit
047e1e8b74
2 changed files with 6 additions and 12 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue