From bda2e4a4ab45efc379d514080926ab4bc28f8781 Mon Sep 17 00:00:00 2001 From: Nathan Fulton Date: Sat, 29 Apr 2017 23:38:49 -0400 Subject: [PATCH] iOS getPlatformString use SystemName --- game/sdl/ios/iphone.mm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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