Fix unused var in case Alembic is not enabled, in own previous commit.

Sorry for the noise...
This commit is contained in:
Bastien Montagne 2018-09-19 11:11:39 +02:00
parent 71d18f59a3
commit 340527cd37
1 changed files with 1 additions and 0 deletions

View File

@ -159,6 +159,7 @@ static bool dependsOnTime(ModifierData *md)
MeshSeqCacheModifierData *mcmd = (MeshSeqCacheModifierData *) md;
return (mcmd->cache_file != NULL);
#else
UNUSED_VARS(md);
return false;
#endif
}