#include "iPhonePrivate.h"
-extern bool IsWildcat_;
-
@implementation UIViewController (Cydia)
- (BOOL) hasLoaded {
}
- (NSUInteger) supportedInterfaceOrientations {
- return IsWildcat_ ? UIInterfaceOrientationMaskAll : UIInterfaceOrientationMaskPortrait;
+ extern bool IsWildcat_;
+ extern CGFloat ScreenScale_;
+ return IsWildcat_ || ScreenScale_ == 3 ? UIInterfaceOrientationMaskAll : UIInterfaceOrientationMaskPortrait;
}
- (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {