mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- extended the read buffer for the 'secret' CCMD.
This commit is contained in:
parent
c95b1b0149
commit
7057b7cdf1
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue