diff --git a/game/sdl/ios/iphone.mm b/game/sdl/ios/iphone.mm index 2b69ad5..32bb2f9 100644 --- a/game/sdl/ios/iphone.mm +++ b/game/sdl/ios/iphone.mm @@ -148,7 +148,9 @@ } - (NSString *)getPlatformString { - return [NSString stringWithFormat:@"iOS %@", [[UIDevice currentDevice] systemVersion]]; + return [NSString stringWithFormat:@"%@ %@", + [[UIDevice currentDevice] systemName], + [[UIDevice currentDevice] systemVersion]]; } @end