diff --git a/tools/quake3/q3map2/autopk3.cpp b/tools/quake3/q3map2/autopk3.cpp index 2066ea2d..539f151c 100644 --- a/tools/quake3/q3map2/autopk3.cpp +++ b/tools/quake3/q3map2/autopk3.cpp @@ -47,7 +47,7 @@ static inline StrList* StrList_allocate( size_t strNum ){ static inline void StrList_append( StrList* list, const char* string ){ if( list->n == list->max ) - Error( "StrList overflow" ); + Error( "StrList overflow on item = %s", string ); const size_t size = sizeof( list->s[0] ); if( strcpyQ( list->s[list->n], string, size ) >= size )