summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--Tweak.xm2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index fa4942a..dcbf53d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
TARGET := iphone:7.1:2.0
-ARCHS := armv6 arm64
+ARCHS := armv6 armv7s arm64
PACKAGE_VERSION := $(shell ./version.sh)
include theos/makefiles/common.mk
diff --git a/Tweak.xm b/Tweak.xm
index 7c7c20a..f2748d6 100644
--- a/Tweak.xm
+++ b/Tweak.xm
@@ -107,7 +107,7 @@ void SafeModeAlertItem$alertView$clickedButtonAtIndex$(id self, SEL sel, id shee
void SafeModeAlertItem$configure$requirePasscodeForActions$(id self, SEL sel, BOOL configure, BOOL require) {
NSString *text(@"We apologize for the inconvenience, but SpringBoard has just crashed.\n\nMobileSubstrate /did not/ cause this problem: it has protected you from it.\n\nSpringBoard is now running in Safe Mode. All extensions that support this safety system are disabled.\n\nReboot (or restart SpringBoard) to return to the normal mode. To return to this dialog touch the status bar.\n\nTap \"Help\" below for more tips.");
-#ifdef __arm64__
+#if defined(__ARM_ARCH_7S__) || defined(__arm64__)
if ([self respondsToSelector:@selector(alertController)]) {
UIAlertController *alert([self alertController]);