diff options
-rw-r--r-- | common/util.cpp | 1 | ||||
-rw-r--r-- | common/util.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/common/util.cpp b/common/util.cpp index cba921a142..06954ac441 100644 --- a/common/util.cpp +++ b/common/util.cpp @@ -214,6 +214,7 @@ const PlatformDescription g_platforms[] = { { "windows", "win", "win", "Windows", kPlatformWindows }, { "playstation", "psx", "psx", "Sony PlayStation", kPlatformPSX }, { "cdi", "cdi", "cdi", "Phillips CD-i", kPlatformCDi }, + { "ios", "ios", "ios", "Apple iOS", kPlatformIOS }, { 0, 0, 0, "Default", kPlatformUnknown } }; diff --git a/common/util.h b/common/util.h index b3dd6a4f64..e0bded2f54 100644 --- a/common/util.h +++ b/common/util.h @@ -176,6 +176,7 @@ enum Platform { kPlatformWii, kPlatformPSX, kPlatformCDi, + kPlatformIOS, kPlatformUnknown = -1 }; |