X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Ftools.c;h=52a562fbc6c90d700438cbbeab36f178ad0e927f;hb=9eacc6f4e47b05a7c4942f205faac1d62b0fc289;hp=84e79b3a3c5088834a09a6e741b3b5553053c737;hpb=129d7d8e9a4b6a3ff0586e209a40317fc68fe6db;p=rocksndiamonds.git diff --git a/src/tools.c b/src/tools.c index 84e79b3a..52a562fb 100644 --- a/src/tools.c +++ b/src/tools.c @@ -826,6 +826,10 @@ boolean CheckIfGlobalBorderRedrawIsNeeded() if (game_status == game_status_last) return FALSE; + // redraw if last screen was title screen + if (game_status_last == GAME_MODE_TITLE) + return TRUE; + // redraw if global screen border has changed if (CheckIfGlobalBorderHasChanged()) return TRUE;