From: Jay Freeman (saurik) Date: Mon, 4 Feb 2013 02:46:35 +0000 (-0800) Subject: Use correct >= to verify a range's lower-bound. X-Git-Tag: v0.9.3999.6~1 X-Git-Url: https://git.saurik.com/safemode-ios.git/commitdiff_plain/8d6b6bf4a17335e653be11ec2da25014441e2adc Use correct >= to verify a range's lower-bound. --- diff --git a/MobileSafety.mm b/MobileSafety.mm index 4a373d8..a3e8960 100644 --- a/MobileSafety.mm +++ b/MobileSafety.mm @@ -96,7 +96,7 @@ void SafeModeAlertItem$alertSheet$buttonClicked$(id self, SEL sel, id sheet, int break; case 2: - if (kCFCoreFoundationVersionNumber > 700) + if (kCFCoreFoundationVersionNumber >= 700) system("killall backboardd"); else // XXX: there are better ways of restarting SpringBoard that would actually save state