From 1d22b0265bff3a7c3e5fe1d0e062f9fe27fc53af Mon Sep 17 00:00:00 2001 From: romulox_x Date: Wed, 1 Jul 2015 23:07:01 -0700 Subject: [PATCH] fixed ios compilation error --- platform/iphone/app_delegate.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/iphone/app_delegate.mm b/platform/iphone/app_delegate.mm index dba37ab1b8c..3c79137171f 100644 --- a/platform/iphone/app_delegate.mm +++ b/platform/iphone/app_delegate.mm @@ -140,7 +140,7 @@ static int frame_count = 0; // this might be necessary before here for (NSString* key in [[NSBundle mainBundle] infoDictionary]) { - NSObject* value = [xyz objectForKey:key]; + NSObject* value = [[[NSBundle mainBundle] infoDictionary] objectForKey:key]; String ukey = String::utf8([key UTF8String]); // we need a NSObject to Variant conversor