Minor code update for less verbosity
parent
2096583140
commit
362899776e
|
@ -63,11 +63,10 @@
|
||||||
- (NSUInteger)supportedInterfaceOrientations
|
- (NSUInteger)supportedInterfaceOrientations
|
||||||
{
|
{
|
||||||
NSUInteger orientationMask = 0;
|
NSUInteger orientationMask = 0;
|
||||||
const char *orientationsHint = SDL_GetHint(SDL_HINT_ORIENTATIONS);
|
const char *hint = SDL_GetHint(SDL_HINT_ORIENTATIONS);
|
||||||
|
|
||||||
if (orientationsHint != NULL) {
|
if (hint != NULL) {
|
||||||
NSArray *orientations = [@(orientationsHint) componentsSeparatedByCharactersInSet:
|
NSArray *orientations = [@(hint) componentsSeparatedByString:@" "];
|
||||||
[NSCharacterSet characterSetWithCharactersInString:@" "]];
|
|
||||||
|
|
||||||
if ([orientations containsObject:@"LandscapeLeft"]) {
|
if ([orientations containsObject:@"LandscapeLeft"]) {
|
||||||
orientationMask |= UIInterfaceOrientationMaskLandscapeLeft;
|
orientationMask |= UIInterfaceOrientationMaskLandscapeLeft;
|
||||||
|
|
Loading…
Reference in New Issue