mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-14 06:46:09 +00:00
Begin transitioning to new CModel/CCubeModel & friends
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
namespace metaforce {
|
||||
static u32 min_containing_bytes(u32 v) {
|
||||
v = 32 - v;
|
||||
v = (v >> 3) - ((s32) - (v & 7) >> 31);
|
||||
v = (v >> 3) - (static_cast<s32>(-(v & 7)) >> 31);
|
||||
return v;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user