Browse Source

apply TRUE/FALSE

pull/556/head^2^2
qndel 6 years ago committed by Anders Jenbo
parent
commit
a6a89bca3a
  1. 2
      Source/diablo.cpp
  2. 2
      Source/engine.cpp
  3. 2
      Source/interfac.cpp

2
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;

2
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;
}

2
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)

Loading…
Cancel
Save