(svn r9805) -Codechange: Use HASBIT() et al for display options bits.

This commit is contained in:
peter1138
2007-05-07 11:24:23 +00:00
parent 76ee6d1c82
commit 0de85b7eb0
6 changed files with 29 additions and 29 deletions

View File

@@ -1076,7 +1076,7 @@ void GameLoop()
StateGameLoop();
#endif /* ENABLE_NETWORK */
if (!_pause_game && _display_opt & DO_FULL_ANIMATION) DoPaletteAnimations();
if (!_pause_game && HASBIT(_display_opt, DO_FULL_ANIMATION)) DoPaletteAnimations();
if (!_pause_game || _cheats.build_in_pause.value) MoveAllTextEffects();