]> git.saurik.com Git - cydia.git/blobdiff - CyteKit/ViewController.mm
I apparently lost this rotation commit somewhere.
[cydia.git] / CyteKit / ViewController.mm
index b40ac6de3b1a2cda1f2e08211ca4919137be3099..1991bcfd1062149f2ec8a97fa7954cdcc7a780d3 100644 (file)
@@ -26,8 +26,6 @@
 
 #include "iPhonePrivate.h"
 
-extern bool IsWildcat_;
-
 @implementation UIViewController (Cydia)
 
 - (BOOL) hasLoaded {
@@ -109,7 +107,9 @@ extern bool IsWildcat_;
 }
 
 - (NSUInteger) supportedInterfaceOrientations {
-    return IsWildcat_ ? UIInterfaceOrientationMaskAll : UIInterfaceOrientationMaskPortrait;
+    extern bool IsWildcat_;
+    extern CGFloat ScreenScale_;
+    return IsWildcat_ || ScreenScale_ == 3 ? UIInterfaceOrientationMaskAll : UIInterfaceOrientationMaskPortrait;
 }
 
 - (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {