Codechange: Add support for verbose asserts

This commit is contained in:
Jonathan G Rennison
2016-09-05 01:18:09 +01:00
committed by Charles Pigott
parent eb74179c6d
commit 5cf28be742
2 changed files with 4 additions and 1 deletions

View File

@@ -129,7 +129,7 @@ void CDECL usererror(const char *s, ...)
void CDECL error(const char *s, ...)
{
va_list va;
char buf[512];
char buf[2048];
va_start(va, s);
vseprintf(buf, lastof(buf), s, va);