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:
Robert Müller 2023-07-04 21:39:37 +02:00
parent 3f50729fc2
commit 89a52812cd

View file

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