diff options
author | Travis Howell | 2008-09-03 01:47:01 +0000 |
---|---|---|
committer | Travis Howell | 2008-09-03 01:47:01 +0000 |
commit | b0a4658038cb30f49d58d819cfa9e6d554a1d84b (patch) | |
tree | 182d00a143c4fccc2a3fded16de3fd160deeaf73 /common | |
parent | b7d260330b3278d8de1fdf035d99f7725704f21d (diff) | |
download | scummvm-rg350-b0a4658038cb30f49d58d819cfa9e6d554a1d84b.tar.gz scummvm-rg350-b0a4658038cb30f49d58d819cfa9e6d554a1d84b.tar.bz2 scummvm-rg350-b0a4658038cb30f49d58d819cfa9e6d554a1d84b.zip |
Add Nintendo Wii versions of Freddi Fish 1 and Pajama Sam 1.
svn-id: r34290
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 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 }; |