diff options
author | romulox_x <romulox_x@yahoo.com> | 2015-07-01 23:07:01 -0700 |
---|---|---|
committer | romulox_x <romulox_x@yahoo.com> | 2015-07-01 23:07:01 -0700 |
commit | 1d22b0265bff3a7c3e5fe1d0e062f9fe27fc53af (patch) | |
tree | bf34c4628431b53c554ef1dc4bf710cc3a911f57 /platform | |
parent | b4d5f7e154973e8fb93a9a0af6ffa0b065e2c50c (diff) |
fixed ios compilation error
Diffstat (limited to 'platform')
-rw-r--r-- | platform/iphone/app_delegate.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/iphone/app_delegate.mm b/platform/iphone/app_delegate.mm index dba37ab1b8..3c79137171 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 |