diff options
author | dP <dp@dpointer.org> | 2021-10-02 17:33:28 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-02 16:33:28 +0200 |
commit | 585ad9bcab8b932ce504b43d36dacc168f1ec7f8 (patch) | |
tree | 92af9c2f63e90d0f94827f2c8ca761da9feb0f71 | |
parent | ccd586a736595c2af09c6f614c11a75b9b3da156 (diff) | |
download | openttd-585ad9bcab8b932ce504b43d36dacc168f1ec7f8.tar.xz |
Cleanup: Swap comments for IConsoleModes (#9587)
-rw-r--r-- | src/console_type.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/console_type.h b/src/console_type.h index add22e008..8c40b4f5b 100644 --- a/src/console_type.h +++ b/src/console_type.h @@ -14,9 +14,9 @@ /** Modes of the in-game console. */ enum IConsoleModes { - ICONSOLE_FULL, ///< In-game console is closed. + ICONSOLE_FULL, ///< In-game console is opened, whole screen. ICONSOLE_OPENED, ///< In-game console is opened, upper 1/3 of the screen. - ICONSOLE_CLOSED, ///< In-game console is opened, whole screen. + ICONSOLE_CLOSED, ///< In-game console is closed. }; /* Colours of the console messages. */ |