diff options
| author | Cerapter <cerap@protonmail.com> | 2018-08-07 19:28:05 +0200 |
|---|---|---|
| committer | Cerapter <cerap@protonmail.com> | 2018-08-07 19:28:05 +0200 |
| commit | f9baa0454d49d7da65a5c17afbb11aefa120e85a (patch) | |
| tree | 22165e492ce5e49fb90e3d9b9e67ba92b619d32e /courtroom.h | |
| parent | 8e3922489095d83532b1c5273137c57a3a3ff3a8 (diff) | |
Log limit bugfixes.
- Log limit is now correctly applied in both directions.
- Log direction now cannot be changed by rewriting the ini mid-game.
Diffstat (limited to 'courtroom.h')
| -rw-r--r-- | courtroom.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/courtroom.h b/courtroom.h index 4b47558e..b3342db8 100644 --- a/courtroom.h +++ b/courtroom.h @@ -193,6 +193,12 @@ private: bool rainbow_appended = false; bool blank_blip = false; + // Used for getting the current maximum blocks allowed in the IC chatlog. + int log_maximum_blocks = 0; + + // True, if the log should go downwards. + bool log_goes_downwards = false; + //delay before chat messages starts ticking QTimer *text_delay_timer; |
