engine: imagelib: add missing argument name, so it compilers with old C standards compliant compilers

This commit is contained in:
Alibek Omarov
2025-08-11 20:50:03 +05:00
parent af0d77caf7
commit 4f45df2293

View File

@@ -119,9 +119,9 @@ static void Image_IncrementLookupTime( void )
g_lookup_start = Sys_DoubleTime();
}
#else
static void Image_ReportLookupsCount( const char * )
static void Image_ReportLookupsCount( const char *name )
{
(void)name;
}
static void Image_IncrementLookupTime( void )
{