From a6a89bca3a722d42a017f069f1587946089c8861 Mon Sep 17 00:00:00 2001 From: qndel Date: Fri, 31 Jan 2020 18:59:35 +0100 Subject: [PATCH] apply TRUE/FALSE --- Source/diablo.cpp | 2 +- Source/engine.cpp | 2 +- Source/interfac.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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)