Fixed syntax error

This commit is contained in:
Sam Lantinga 2012-09-23 17:15:05 -07:00
parent a5d17c62db
commit adff2fb994

View file

@ -34,7 +34,8 @@
#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
enum UIInterfaceOrientationMask) {
enum UIInterfaceOrientationMask
{
UIInterfaceOrientationMaskPortrait = (1 << UIInterfaceOrientationPortrait),
UIInterfaceOrientationMaskLandscapeLeft = (1 << UIInterfaceOrientationLandscapeLeft),
UIInterfaceOrientationMaskLandscapeRight = (1 << UIInterfaceOrientationLandscapeRight),