mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 03:30:46 +00:00
Increase size of text buffer used for editor 3d mode info display--it was possible to overflow it
git-svn-id: https://svn.eduke32.com/eduke32@7064 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
cc6e458d00
commit
da040c0690
1 changed files with 1 additions and 1 deletions
|
@ -4371,7 +4371,7 @@ static void Keys3d(void)
|
||||||
|
|
||||||
if (searchsector > -1 && searchsector < numsectors)
|
if (searchsector > -1 && searchsector < numsectors)
|
||||||
{
|
{
|
||||||
char lines[8][64];
|
char lines[8][128];
|
||||||
int32_t num=0;
|
int32_t num=0;
|
||||||
int32_t x,y,flags=0;
|
int32_t x,y,flags=0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue