- extended the read buffer for the 'secret' CCMD.

This commit is contained in:
Christoph Oelckers 2022-05-14 21:47:15 +02:00
parent c95b1b0149
commit 7057b7cdf1

View file

@ -1023,10 +1023,10 @@ CCMD(secret)
maphdr.Format("[%s]", mapname);
FString linebuild;
char readbuffer[1024];
char readbuffer[10240];
bool inlevel = false;
while (lump.Gets(readbuffer, 1024))
while (lump.Gets(readbuffer, 10240))
{
if (!inlevel)
{