summary refs log tree commit diff stats
path: root/src/message_system.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/message_system.cpp')
-rw-r--r--src/message_system.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/message_system.cpp b/src/message_system.cpp index 32ee847..1447f1e 100644 --- a/src/message_system.cpp +++ b/src/message_system.cpp
@@ -6,6 +6,8 @@ const int CHARS_TO_REVEAL = 1;
6const int CHARS_PER_BEEP = 8; 6const int CHARS_PER_BEEP = 8;
7 7
8void MessageSystem::tick(double dt) { 8void MessageSystem::tick(double dt) {
9 if (game_.isGameplayPaused()) return;
10
9 if (barsState_ == BarsState::Opening || barsState_ == BarsState::Closing) { 11 if (barsState_ == BarsState::Opening || barsState_ == BarsState::Closing) {
10 accum_ += dt; 12 accum_ += dt;
11 13