diff options
author | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-01-29 01:44:12 +0100 |
---|---|---|
committer | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-01-29 17:16:26 +0100 |
commit | c4328afce7e2a0b48b9d0d2b225496e29fff1c0a (patch) | |
tree | cbed53aea63f025992b16be9b8ad1d13097df20b /src/core/Frontend.cpp | |
parent | Fix some UBs (diff) | |
download | re3-c4328afce7e2a0b48b9d0d2b225496e29fff1c0a.tar re3-c4328afce7e2a0b48b9d0d2b225496e29fff1c0a.tar.gz re3-c4328afce7e2a0b48b9d0d2b225496e29fff1c0a.tar.bz2 re3-c4328afce7e2a0b48b9d0d2b225496e29fff1c0a.tar.lz re3-c4328afce7e2a0b48b9d0d2b225496e29fff1c0a.tar.xz re3-c4328afce7e2a0b48b9d0d2b225496e29fff1c0a.tar.zst re3-c4328afce7e2a0b48b9d0d2b225496e29fff1c0a.zip |
Diffstat (limited to 'src/core/Frontend.cpp')
-rw-r--r-- | src/core/Frontend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/Frontend.cpp b/src/core/Frontend.cpp index f38efb66..16a70697 100644 --- a/src/core/Frontend.cpp +++ b/src/core/Frontend.cpp @@ -5582,7 +5582,7 @@ CMenuManager::DrawQuitGameScreen(void) } #else static PauseModeTime firstTick = CTimer::GetTimeInMillisecondsPauseMode(); - if (alpha == 255 && CTimer::GetTimeInMillisecondsPauseMode() - firstTick > 1000) { + if (alpha == 255 && CTimer::GetTimeInMillisecondsPauseMode() - firstTick > 750) { exitSignalTimer = 150; } #endif |