diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2019-07-04 01:16:24 +0300 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2019-07-04 01:16:24 +0300 |
commit | 7fae683316db64e772fb82833d73860cc16cf03a (patch) | |
tree | d2c120d723c726141b9d38124bc89920bce721a9 /src/control/Replay.cpp | |
parent | 92af18c165444080fae8bcd2dc9ea6f439ac0039 (diff) |
Script stuff + bug fixes
Diffstat (limited to 'src/control/Replay.cpp')
-rw-r--r-- | src/control/Replay.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/control/Replay.cpp b/src/control/Replay.cpp index b80b04ba..a2164f6b 100644 --- a/src/control/Replay.cpp +++ b/src/control/Replay.cpp @@ -1572,7 +1572,7 @@ void CReplay::Display() if (Mode == MODE_RECORD) return; counter = (counter + 1) % 65536; - if (counter & 0x20 == 0) + if ((counter & 0x20) == 0) return; CFont::SetPropOn(); CFont::SetBackgroundOff(); |