Changeset - r8192:a0f38ced35f2
[Not reviewed]
master
0 1 0
peter1138 - 16 years ago 2008-01-04 10:09:57
peter1138@openttd.org
(svn r11755) -Fix: Debug level string buffer was not long enough to contain all debug levels.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/debug.cpp
Show inline comments
 
@@ -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));
0 comments (0 inline, 0 general)