mirror of
https://github.com/yawut/SDL.git
synced 2026-04-26 00:57:36 -05:00
Fixed syntax error
This commit is contained in:
parent
ecbbb43ed9
commit
7bf6954e55
|
|
@ -34,7 +34,8 @@
|
||||||
|
|
||||||
#ifndef __IPHONE_6_0
|
#ifndef __IPHONE_6_0
|
||||||
// This enum isn't available in older SDKs, but we use it for our own purposes on iOS 5.1 and for the system on iOS 6.0
|
// This enum isn't available in older SDKs, but we use it for our own purposes on iOS 5.1 and for the system on iOS 6.0
|
||||||
enum UIInterfaceOrientationMask) {
|
enum UIInterfaceOrientationMask
|
||||||
|
{
|
||||||
UIInterfaceOrientationMaskPortrait = (1 << UIInterfaceOrientationPortrait),
|
UIInterfaceOrientationMaskPortrait = (1 << UIInterfaceOrientationPortrait),
|
||||||
UIInterfaceOrientationMaskLandscapeLeft = (1 << UIInterfaceOrientationLandscapeLeft),
|
UIInterfaceOrientationMaskLandscapeLeft = (1 << UIInterfaceOrientationLandscapeLeft),
|
||||||
UIInterfaceOrientationMaskLandscapeRight = (1 << UIInterfaceOrientationLandscapeRight),
|
UIInterfaceOrientationMaskLandscapeRight = (1 << UIInterfaceOrientationLandscapeRight),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user