mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-02-06 22:37:22 +00:00
(svn r11755) -Fix: Debug level string buffer was not long enough to contain all debug levels.
This commit is contained in:
parent
23fab42b2f
commit
3182cbb332
@ -162,7 +162,7 @@ void SetDebugString(const char *s)
|
||||
const char *GetDebugString()
|
||||
{
|
||||
const DebugLevel *i;
|
||||
static char dbgstr[100];
|
||||
static char dbgstr[150];
|
||||
char dbgval[20];
|
||||
|
||||
memset(dbgstr, 0, sizeof(dbgstr));
|
||||
|
Loading…
Reference in New Issue
Block a user