Fix obscure animlib bug

git-svn-id: https://svn.eduke32.com/eduke32@8081 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2019-09-08 01:01:17 +00:00 committed by Christoph Oelckers
parent 8ac4c6739a
commit 0baced1d6c

View file

@ -71,8 +71,10 @@ static inline uint16_t findpage(uint16_t framenumber)
i = 0, j = false;
continue;
}
break;
}
while (0);
while (1);
return (uint16_t)i;
}