mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-16 03:23:15 +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];
|
||||
|
||||
@@ -20,6 +20,11 @@
|
||||
#include "../common.h"
|
||||
#include "../drawing/drawing.h"
|
||||
|
||||
#define CHAT_HISTORY_SIZE 10
|
||||
#define CHAT_INPUT_SIZE 1024
|
||||
#define CHAT_MAX_MESSAGE_LENGTH 200
|
||||
#define CHAT_MAX_WINDOW_WIDTH 600
|
||||
|
||||
extern bool gChatOpen;
|
||||
|
||||
void chat_open();
|
||||
|
||||
Reference in New Issue
Block a user