mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-23 15:52:55 +01:00
Rename CHAT_MAX_MESSAGE_LENGTH to kChatMaxMessageLength
This commit is contained in:
@@ -53,7 +53,7 @@ bool ChatAvailable()
|
||||
void ChatOpen()
|
||||
{
|
||||
gChatOpen = true;
|
||||
_chatTextInputSession = ContextStartTextInput(_chatCurrentLine, CHAT_MAX_MESSAGE_LENGTH);
|
||||
_chatTextInputSession = ContextStartTextInput(_chatCurrentLine, kChatMaxMessageLength);
|
||||
}
|
||||
|
||||
void ChatClose()
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
constexpr int8_t kChatHistorySize = 10;
|
||||
constexpr int16_t kChatInputSize = 1024;
|
||||
#define CHAT_MAX_MESSAGE_LENGTH 200
|
||||
constexpr int kChatMaxMessageLength = 200;
|
||||
#define CHAT_MAX_WINDOW_WIDTH 600
|
||||
|
||||
struct DrawPixelInfo;
|
||||
|
||||
Reference in New Issue
Block a user