Skip to content

Commit

Permalink
AURORA: Add a Platform value for Apple iOS mobile phones and tablets
Browse files Browse the repository at this point in the history
  • Loading branch information
DrMcCoy committed Jul 29, 2018
1 parent eae4454 commit 864a38f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/aurora/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -426,6 +426,7 @@ enum Platform {
kPlatformXbox360, ///< Microsoft Xbox 360.
kPlatformLinux, ///< GNU/Linux.
kPlatformAndroid, ///< Android mobile phones and tablets.
kPlatformIOS, ///< iOS, Apple mobile phones and tablets.
kPlatformUnknown ///< Unknown (must be last).
};

Expand Down
2 changes: 1 addition & 1 deletion src/aurora/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ void FileTypeManager::buildHashLookup(Common::HashAlgo algo) {
Common::UString getPlatformDescription(Platform platform) {
static const char * const names[] = {
"Windows", "Nintendo DS", "Mac OS X", "Xbox", "PlayStation 3", "Xbox 360", "GNU/Linux",
"Android", "Unknown"
"Android", "iOS", "Unknown"
};

return names[platform];
Expand Down

0 comments on commit 864a38f

Please sign in to comment.