2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 15:07:41 +00:00

Various level streaming fixes, remove support for uncooked rep

This commit is contained in:
2018-05-06 17:47:40 -07:00
parent 9d25d44fe8
commit f5ea144b47
30 changed files with 458 additions and 181 deletions

View File

@@ -104,7 +104,7 @@ public:
static s32 BitPosition(u64 flag)
{
for (u32 i = 0; i < 63; ++i)
for (u32 i = 0; i < 64; ++i)
if ((flag & (1ull << i)) != 0)
return i;
return -1;