mirror of
https://github.com/DrBeef/Raze.git
synced 2025-01-18 23:21:43 +00:00
- extended the read buffer for the 'secret' CCMD.
This commit is contained in:
parent
84bafe6d02
commit
c82e80d152
1 changed files with 2 additions and 2 deletions
|
@ -77,10 +77,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