fix two more ptr narrowing casts

This commit is contained in:
Jeffrey Crowell
2026-02-25 11:21:28 -08:00
parent 05921d1fc9
commit de9576c32b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -211,7 +211,7 @@ bool JUTCacheFont::allocArea(void* cacheBuffer, u32 param_1, JKRHeap* heap) {
}
if (cacheBuffer != NULL) {
JUT_ASSERT(352, ( (u32)cacheBuffer & 0x1f ) == 0);
JUT_ASSERT(352, ( (uintptr_t)cacheBuffer & 0x1f ) == 0);
mCacheBuffer = cacheBuffer;
field_0xb0 = 0;
} else {