change ANDROID define to TARGET_ANDROID

This commit is contained in:
CraftyBoss
2026-04-14 03:18:21 -07:00
parent 35650784c3
commit ec091ac3af
14 changed files with 24 additions and 20 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ void JASBasicBank::newInstTable(u8 num, JKRHeap* heap) {
JUT_ASSERT(31, num <= JASBank::PRG_OSC);
mInstNumMax = num;
mInstTable = JKR_NEW_ARRAY_ARGS(JASInst*, mInstNumMax, heap, 0);
#if ANDROID
#if TARGET_ANDROID
JASCalc::_bzero(mInstTable, mInstNumMax * 4);
#else
JASCalc::bzero(mInstTable, mInstNumMax * 4);