code cleanup: remove unused defines

This commit is contained in:
2012-04-23 08:05:02 +00:00
parent ceffa6e1fa
commit b9a2741f68
6 changed files with 9 additions and 37 deletions

View File

@@ -362,8 +362,11 @@ int imb_get_anim_type(const char * name)
if (isredcode(name)) return (ANIM_REDCODE);
#endif
type = IMB_ispic(name);
if (type) return(ANIM_SEQUENCE);
return(0);
if (type) {
return ANIM_SEQUENCE;
}
return ANIM_NONE;
}
int IMB_isanim(const char *filename)