diff options
author | Matthew Hoops | 2011-04-07 10:51:10 -0400 |
---|---|---|
committer | Matthew Hoops | 2011-04-07 10:52:58 -0400 |
commit | 50d25195524aaa11acc5ae08622c52a75d7f08ac (patch) | |
tree | c406c96cdc8608288d9322361c0ff70f06fb4422 /common | |
parent | d5ff4781004d1f9b2eebea954933c4b39a4ce227 (diff) | |
download | scummvm-rg350-50d25195524aaa11acc5ae08622c52a75d7f08ac.tar.gz scummvm-rg350-50d25195524aaa11acc5ae08622c52a75d7f08ac.tar.bz2 scummvm-rg350-50d25195524aaa11acc5ae08622c52a75d7f08ac.zip |
COMMON: Add iOS platform type
Diffstat (limited to 'common')
-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 }; |