diff --git a/Source/diablo.cpp b/Source/diablo.cpp index 5c11df0bf..157520959 100644 --- a/Source/diablo.cpp +++ b/Source/diablo.cpp @@ -1882,7 +1882,7 @@ void timeout_cursor(BOOL bTimeout) SetCursor_(CURSOR_HOURGLASS); force_redraw = 255; } - scrollrt_draw_game_screen(1); + scrollrt_draw_game_screen(TRUE); } else if (sgnTimeoutCurs) { SetCursor_(sgnTimeoutCurs); sgnTimeoutCurs = 0; diff --git a/Source/engine.cpp b/Source/engine.cpp index d71fa31fa..5f45e523b 100644 --- a/Source/engine.cpp +++ b/Source/engine.cpp @@ -3816,7 +3816,7 @@ void PlayInGameMovie(char *pszMovie) play_movie(pszMovie, FALSE); ClearScreenBuffer(); force_redraw = 255; - scrollrt_draw_game_screen(1); + scrollrt_draw_game_screen(TRUE); PaletteFadeIn(8); force_redraw = 255; } diff --git a/Source/interfac.cpp b/Source/interfac.cpp index 0e540ab30..277d36272 100644 --- a/Source/interfac.cpp +++ b/Source/interfac.cpp @@ -47,7 +47,7 @@ void DrawCutscene() unlock_buf(1); force_redraw = 255; - scrollrt_draw_game_screen(0); + scrollrt_draw_game_screen(FALSE); } void DrawProgress(int screen_x, int screen_y, int progress_id)