1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-22 22:34:33 +01:00

Increase buffer size to avoid truncating text

This commit is contained in:
Matt
2019-05-11 23:40:59 +02:00
parent 2f4f4fbf8e
commit c1d6337e3b

View File

@@ -1348,7 +1348,7 @@ void Network::AppendLog(std::ostream& fs, const std::string& s)
}
try
{
utf8 buffer[256];
utf8 buffer[1024];
time_t timer;
time(&timer);
auto tmInfo = localtime(&timer);