Browse Source

🐛 Also pause color cycleing when game is paused

Fixes #3144
pull/3161/head
Anders Jenbo 4 years ago
parent
commit
9323a873b4
  1. 3
      Source/diablo.cpp

3
Source/diablo.cpp

@ -2068,6 +2068,9 @@ void diablo_color_cyc_logic()
if (!sgOptions.Graphics.bColorCycling)
return;
if (PauseMode != 0)
return;
if (leveltype == DTYPE_HELL) {
lighting_color_cycling();
} else if (currlevel >= 21) {

Loading…
Cancel
Save