engine: fix more warnings

This commit is contained in:
Alibek Omarov
2026-05-13 10:46:44 +05:00
parent be6571a6a2
commit ff8efebba2
5 changed files with 12 additions and 9 deletions

View File

@@ -943,11 +943,11 @@ void GAME_EXPORT pfnResetTutorMessageDecayData( void )
static void Test_LZSS( void )
{
char poison1[8192];
char poison1[8192] MAYBE_UNUSED;
byte in[256];
char poison2[8192];
char poison2[8192] MAYBE_UNUSED;
byte out[256];
char poison3[8192];
char poison3[8192] MAYBE_UNUSED;
lzss_header_t *hdr = (lzss_header_t *)in;
uint result;