change ANDROID define to TARGET_ANDROID

This commit is contained in:
CraftyBoss
2026-04-14 03:18:21 -07:00
parent 27dff12c78
commit 97f1fdf297
14 changed files with 24 additions and 20 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ void *_memcpy(void* dest, void const* src, int n) {
}
void DCZeroRange(void* addr, uint32_t nBytes) {
#if defined(_MSC_VER) || ANDROID
#if defined(_MSC_VER) || TARGET_ANDROID
memset(addr, 0, nBytes);
#else
bzero(addr, nBytes);