summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/video/sdl_v.cpp20
1 files changed, 12 insertions, 8 deletions
diff --git a/src/video/sdl_v.cpp b/src/video/sdl_v.cpp
index f9ef164c0..1af499d0a 100644
--- a/src/video/sdl_v.cpp
+++ b/src/video/sdl_v.cpp
@@ -593,19 +593,23 @@ void VideoDriver_SDL::MainLoop()
CheckPaletteAnim();
pal_tick = 1;
}
-
- /* End of the critical part. */
- if (_draw_threaded && !IsGeneratingWorld()) {
- _draw_mutex->SendSignal();
- } else {
- /* Oh, we didn't have threads, then just draw unthreaded */
- DrawSurfaceToScreen();
- }
} else {
/* Release the thread while sleeping */
if (_draw_threaded) _draw_mutex->EndCritical();
CSleep(1);
if (_draw_threaded) _draw_mutex->BeginCritical();
+
+ _screen.dst_ptr = _sdl_screen->pixels;
+ NetworkDrawChatMessage();
+ DrawMouseCursor();
+ }
+
+ /* End of the critical part. */
+ if (_draw_threaded && !IsGeneratingWorld()) {
+ _draw_mutex->SendSignal();
+ } else {
+ /* Oh, we didn't have threads, then just draw unthreaded */
+ DrawSurfaceToScreen();
}
}