diff options
author | Jonathan G Rennison <j.g.rennison@gmail.com> | 2016-09-05 01:18:09 +0100 |
---|---|---|
committer | Charles Pigott <charlespigott@googlemail.com> | 2020-12-27 10:30:55 +0000 |
commit | 5cf28be742581d335ecb0c270e8039ee8ed9ccf0 (patch) | |
tree | 8b6d8ea52ae97e02515031499d4e8d319fe171bb | |
parent | eb74179c6d66921d2946e4a93e41a5de0af4a4ac (diff) | |
download | openttd-5cf28be742581d335ecb0c270e8039ee8ed9ccf0.tar.xz |
Codechange: Add support for verbose asserts
-rw-r--r-- | src/openttd.cpp | 2 | ||||
-rw-r--r-- | src/stdafx.h | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/openttd.cpp b/src/openttd.cpp index e4fcf40e9..33f65314d 100644 --- a/src/openttd.cpp +++ b/src/openttd.cpp @@ -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); diff --git a/src/stdafx.h b/src/stdafx.h index 9b9f4c6a9..00dd1322a 100644 --- a/src/stdafx.h +++ b/src/stdafx.h @@ -430,6 +430,9 @@ void NORETURN CDECL error(const char *str, ...) WARN_FORMAT(1, 2); /* Asserts are enabled if NDEBUG isn't defined or WITH_ASSERT is defined. */ #if !defined(NDEBUG) || defined(WITH_ASSERT) # define OTTD_ASSERT +# define assert_msg(expression, msg, ...) if (!(expression)) error("Assertion failed at line %i of %s: %s\n\t" msg, __LINE__, __FILE__, #expression, __VA_ARGS__); +#else +# define assert_msg(expression, msg, ...) #endif #if defined(OPENBSD) |