mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-19 21:13:05 +01:00
Changed the server greeting buffer from 256 to 1024
* Changed the server greeting buffer size to accept longer strings * Added comment explaining character limit for greeting buffer * Moved chat constants to header file to allow access from includes
This commit is contained in:
@@ -24,11 +24,6 @@
|
||||
#include "../platform/platform.h"
|
||||
#include "../util/util.h"
|
||||
|
||||
#define CHAT_HISTORY_SIZE 10
|
||||
#define CHAT_INPUT_SIZE 256
|
||||
#define CHAT_MAX_MESSAGE_LENGTH 200
|
||||
#define CHAT_MAX_WINDOW_WIDTH 600
|
||||
|
||||
bool gChatOpen = false;
|
||||
char _chatCurrentLine[CHAT_MAX_MESSAGE_LENGTH];
|
||||
char _chatHistory[CHAT_HISTORY_SIZE][CHAT_INPUT_SIZE];
|
||||
|
||||
Reference in New Issue
Block a user