engine: client: fix incorrect format in error message in CL_SetLightStyle

This commit is contained in:
Alibek Omarov
2025-02-05 17:41:01 +03:00
parent 54b0cf9991
commit 14eb07653c
+1 -1
View File
@@ -2429,7 +2429,7 @@ void CL_SetLightstyle( int style, const char *s, float f )
if( unlikely( style < 0 || style >= MAX_LIGHTSTYLES ))
{
Con_Printf( S_WARN "%s: ignored invalid lightstyle id %d\n", style );
Con_Printf( S_WARN "%s: ignored invalid lightstyle id %d\n", __func__, style );
return;
}