aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/util.cpp1
-rw-r--r--common/util.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/common/util.cpp b/common/util.cpp
index 316f2e39c3..f23a0ee6d6 100644
--- a/common/util.cpp
+++ b/common/util.cpp
@@ -277,6 +277,7 @@ const PlatformDescription g_platforms[] = {
{"c64", "c64", "c64", "Commodore 64", kPlatformC64},
{"pc", "dos", "ibm", "DOS", kPlatformPC},
{"pc98", "pc98", "pc98", "PC-98", kPlatformPC98},
+ {"wii", "wii", "wii", "Nintendo Wii", kPlatformWii},
// The 'official' spelling seems to be "FM-TOWNS" (e.g. in the Indy4 demo).
// However, on the net many variations can be seen, like "FMTOWNS",
diff --git a/common/util.h b/common/util.h
index c23513596c..ecfdac33d7 100644
--- a/common/util.h
+++ b/common/util.h
@@ -210,6 +210,7 @@ enum Platform {
kPlatformApple2GS,
kPlatformPC98,
+ kPlatformWii,
kPlatformUnknown = -1
};