mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-03-10 11:11:51 +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);
|
maphdr.Format("[%s]", mapname);
|
||||||
|
|
||||||
FString linebuild;
|
FString linebuild;
|
||||||
char readbuffer[1024];
|
char readbuffer[10240];
|
||||||
bool inlevel = false;
|
bool inlevel = false;
|
||||||
|
|
||||||
while (lump.Gets(readbuffer, 1024))
|
while (lump.Gets(readbuffer, 10240))
|
||||||
{
|
{
|
||||||
if (!inlevel)
|
if (!inlevel)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue