From 654c53c65ef6dca82efeb75af32a99a8943b085e Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Sat, 27 Nov 2021 05:31:44 +0100 Subject: [PATCH] [ios] Disable hardware cursor --- Source/options.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/options.cpp b/Source/options.cpp index a41239ef2..7631d8440 100644 --- a/Source/options.cpp +++ b/Source/options.cpp @@ -187,7 +187,7 @@ void SaveIni() #if SDL_VERSION_ATLEAST(2, 0, 0) bool HardwareCursorDefault() { -#ifdef __ANDROID__ +#if defined(__ANDROID__) || defined(TARGET_OS_IPHONE) // See https://github.com/diasurgical/devilutionX/issues/2502 return false; #else