From f1b861606aa4b0efb901a3cb62f34a9122975724 Mon Sep 17 00:00:00 2001 From: Ben Millwood Date: Sat, 3 Oct 2009 11:31:09 +0000 Subject: Improving an error message, which should help diagnose its cause a little. --- src/qcommon/q_shared.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; } -- cgit