mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-27 17:30:51 +00:00
Fix non-HAVE_CLIPSHAPE_FEATURE build.
Used for example with DEBUGGINGAIDS=2, i.e. sanitizers enabled. git-svn-id: https://svn.eduke32.com/eduke32@5806 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
1b947c7b07
commit
bcce4cd531
1 changed files with 1 additions and 1 deletions
|
@ -519,7 +519,7 @@ int32_t clipshape_idx_for_sprite(uspritetype const * const curspr, int32_t curid
|
||||||
#else
|
#else
|
||||||
int32_t clipshape_idx_for_sprite(uspritetype const * const curspr, int32_t curidx)
|
int32_t clipshape_idx_for_sprite(uspritetype const * const curspr, int32_t curidx)
|
||||||
{
|
{
|
||||||
UNREFERENCED_PARAMETER(curspr);
|
(void)curspr;
|
||||||
UNREFERENCED_PARAMETER(curidx);
|
UNREFERENCED_PARAMETER(curidx);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue