fix gui not responding when the game is paused (#151)

This commit is contained in:
Alexis Murzeau 2022-08-09 07:26:15 +02:00 committed by GitHub
parent 54a217c27b
commit 367f4538a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -898,7 +898,7 @@ int winmain::ProcessWindowMessages()
{
static auto idleWait = 0;
SDL_Event event;
if (has_focus && !single_step)
if (has_focus)
{
idleWait = static_cast<int>(TargetFrameTime.count());
while (SDL_PollEvent(&event))