diff --git a/lib/irrlicht/source/Irrlicht/CIrrDeviceSDL.cpp b/lib/irrlicht/source/Irrlicht/CIrrDeviceSDL.cpp index 9a397525b..4341c6657 100644 --- a/lib/irrlicht/source/Irrlicht/CIrrDeviceSDL.cpp +++ b/lib/irrlicht/source/Irrlicht/CIrrDeviceSDL.cpp @@ -552,6 +552,7 @@ extern "C" void handle_joystick(SDL_Event& event); // In main_loop.cpp extern "C" void pause_mainloop(); extern "C" void resume_mainloop(); +extern "C" void reset_network_body(); //! runs the device. Returns false if device wants to be deleted bool CIrrDeviceSDL::run() { @@ -770,6 +771,7 @@ bool CIrrDeviceSDL::run() Height = new_height; if (VideoDriver) VideoDriver->OnResize(core::dimension2d(Width, Height)); + reset_network_body(); } else if (SDL_event.window.event == SDL_WINDOWEVENT_MINIMIZED) { @@ -782,11 +784,17 @@ bool CIrrDeviceSDL::run() else if (SDL_event.window.event == SDL_WINDOWEVENT_FOCUS_GAINED) { WindowHasFocus = true; + reset_network_body(); } else if (SDL_event.window.event == SDL_WINDOWEVENT_FOCUS_LOST) { WindowHasFocus = false; } + else if (SDL_event.window.event == SDL_WINDOWEVENT_MOVED) + { + // In windows the rendering is paused when window is moving + reset_network_body(); + } } break; case SDL_TEXTEDITING: diff --git a/src/main_loop.cpp b/src/main_loop.cpp index ecc539384..6fd29c891 100644 --- a/src/main_loop.cpp +++ b/src/main_loop.cpp @@ -150,6 +150,15 @@ extern "C" void resume_mainloop() } // resume_mainloop #endif +//----------------------------------------------------------------------------- +extern "C" void reset_network_body() +{ + // In windows the rendering is paused when out focus, which pauses the + // smooth timer + if (World::getWorld() && RewindManager::isEnabled()) + RewindManager::get()->resetSmoothNetworkBody(); +} // reset_network_body + //----------------------------------------------------------------------------- /** Returns the current dt, which guarantees a limited frame rate. If dt is * too low (the frame rate too high), the process will sleep to reach the