From: S. Davilla Date: Sun, 27 Oct 2013 23:08:42 +0000 (-0400) Subject: ios: fixed, use full path on XBMCController.h to get the correct file as there are... X-Git-Tag: Gotham_alpha9~27 X-Git-Url: http://code.vuplus.com/gitweb/?a=commitdiff_plain;h=07b69106ed4eaf819eac1fd85709a2826f88e53f;p=vuplus_xbmc ios: fixed, use full path on XBMCController.h to get the correct file as there are two, one for ios and one for atv2 --- diff --git a/xbmc/osx/IOSScreenManager.mm b/xbmc/osx/IOSScreenManager.mm index 70615a7..bbb4d47 100644 --- a/xbmc/osx/IOSScreenManager.mm +++ b/xbmc/osx/IOSScreenManager.mm @@ -35,7 +35,11 @@ #include #import "IOSScreenManager.h" -#import "XBMCController.h" +#if defined(TARGET_DARWIN_IOS_ATV2) +#import "xbmc/osx/atv2/XBMCController.h" +#elif defined(TARGET_DARWIN_IOS) +#import "xbmc/osx/ios/XBMCController.h" +#endif #import "IOSExternalTouchController.h" #import "IOSEAGLView.h"