diff options
author | Ben Millwood <thebenmachine@gmail.com> | 2009-10-03 11:31:09 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:15:04 +0000 |
commit | f1b861606aa4b0efb901a3cb62f34a9122975724 (patch) | |
tree | d04c9fae9c63c5c6f63a17c2168ae34dff392938 | |
parent | 3f5d97fcb66cc5cbedd094f6a80d95149e00c3b4 (diff) |
Improving an error message, which should help diagnose its cause a little.
-rw-r--r-- | src/qcommon/q_shared.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qcommon/q_shared.c b/src/qcommon/q_shared.c index bb70444f..f3220f1c 100644 --- a/src/qcommon/q_shared.c +++ b/src/qcommon/q_shared.c @@ -1303,7 +1303,8 @@ void Info_SetValueForKey_Big( char *s, const char *key, const char *value ) { if (strlen(newi) + strlen(s) >= BIG_INFO_STRING) { - Com_Printf ("BIG Info string length exceeded\n"); + Com_Printf ("BIG Info string length exceeded: setting %s to %s " + "failed\n", key, value); return; } |