mirror of
https://github.com/AntonioND/nitro-engine.git
synced 2025-06-18 16:45:33 -04:00
library: Silence warnings of unused variables
This commit is contained in:
parent
a7f8353bac
commit
e7fc9f8203
@ -179,6 +179,10 @@ int NE_MaterialTexLoadGRF(NE_Material *tex, NE_Palette *pal,
|
||||
NE_TextureFlags flags, const char *path)
|
||||
{
|
||||
#ifndef NE_BLOCKSDS
|
||||
(void)tex;
|
||||
(void)pal;
|
||||
(void)flags;
|
||||
(void)path;
|
||||
NE_DebugPrint("%s only supported in BlocksDS", __func__);
|
||||
return 0;
|
||||
#else // NE_BLOCKSDS
|
||||
|
Loading…
Reference in New Issue
Block a user