Fix TARGET_OS_IPHONE checks

This commit is contained in:
leo60228
2025-06-19 13:07:14 -04:00
committed by Ethan Lee
parent 65b024a9a3
commit 6ae4de1f94
5 changed files with 5 additions and 5 deletions

View File

@@ -3,7 +3,7 @@
#include <stdarg.h>
#include <stdio.h>
#if defined(__ANDROID__) || defined(TARGET_OS_IPHONE)
#if defined(__ANDROID__) || TARGET_OS_IPHONE
// forward to SDL logging on Android, since stdout/stderr are /dev/null
// they exist on iOS, but just get forwarded to the system log anyway, so might as well provide proper metadata
#define VLOG_USE_SDL 1