mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Increase buffer size for generic popup message
The message can contain a filename, so it should be large enough to contain that and the message itself.
This commit is contained in:
parent
3f50729fc2
commit
89a52812cd
|
@ -199,7 +199,7 @@ protected:
|
|||
NUM_BUTTONS
|
||||
};
|
||||
char m_aPopupTitle[128];
|
||||
char m_aPopupMessage[256];
|
||||
char m_aPopupMessage[IO_MAX_PATH_LENGTH + 256];
|
||||
struct
|
||||
{
|
||||
char m_aLabel[64];
|
||||
|
|
Loading…
Reference in a new issue