Rename CHAT_MAX_MESSAGE_LENGTH to kChatMaxMessageLength

This commit is contained in:
Harry-Hopkinson 2024-04-15 15:35:00 +00:00
parent 140e17029d
commit 337f9ca549
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ bool ChatAvailable()
void ChatOpen()
{
gChatOpen = true;
_chatTextInputSession = ContextStartTextInput(_chatCurrentLine, CHAT_MAX_MESSAGE_LENGTH);
_chatTextInputSession = ContextStartTextInput(_chatCurrentLine, kChatMaxMessageLength);
}
void ChatClose()

View File

@ -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;