From 606879908011c42343dae37e22793c0eb15c550c Mon Sep 17 00:00:00 2001 From: Eric Warmenhoven Date: Thu, 13 Jun 2024 23:48:54 -0400 Subject: [PATCH] apple: fix a couple preprocessor checks to be more consistent --- configuration.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration.h b/configuration.h index ed2f61caa3..0d67a825ff 100644 --- a/configuration.h +++ b/configuration.h @@ -649,7 +649,7 @@ typedef struct settings bool audio_rate_control; bool audio_fastforward_mute; bool audio_fastforward_speedup; -#ifdef TARGET_OS_IOS +#ifdef IOS bool audio_respect_silent_mode; #endif @@ -1072,7 +1072,7 @@ typedef struct settings bool android_input_disconnect_workaround; #endif -#if defined(HAVE_COCOATOUCH) && defined(TARGET_OS_TV) +#if defined(HAVE_COCOATOUCH) bool gcdwebserver_alert; #endif } bools;