diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/util.cpp | 6 | ||||
-rw-r--r-- | common/util.h | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/common/util.cpp b/common/util.cpp index 05d29fac94..5911f9b1a4 100644 --- a/common/util.cpp +++ b/common/util.cpp @@ -289,7 +289,8 @@ const RenderModeDescription g_renderModes[] = { { "vga", "VGA", kRenderVGA }, { "amiga", "Amiga", kRenderAmiga }, { "fmtowns", "FM-Towns", kRenderFMTowns }, - { "pc98", "PC-98", kRenderPC98 }, + { "pc9821", "PC-9821 (256 Colors)", kRenderPC9821 }, + { "pc9801", "PC-9801 (16 Colors)", kRenderPC9801 }, {0, 0, kRenderDefault} }; @@ -361,7 +362,8 @@ const struct GameOpt { { GUIO_RENDERVGA, "vga" }, { GUIO_RENDERAMIGA, "amiga" }, { GUIO_RENDERFMTOWNS, "fmtowns" }, - { GUIO_RENDERPC98, "pc98" }, + { GUIO_RENDERPC9821, "pc9821" }, + { GUIO_RENDERPC9801, "pc9801" }, { GUIO_NONE, 0 } }; diff --git a/common/util.h b/common/util.h index b6f63702d4..841280f7ae 100644 --- a/common/util.h +++ b/common/util.h @@ -108,7 +108,8 @@ template<typename T> inline void SWAP(T &a, T &b) { T tmp = a; a = b; b = tmp; } #define GUIO_RENDERVGA "\034" #define GUIO_RENDERAMIGA "\035" #define GUIO_RENDERFMTOWNS "\036" -#define GUIO_RENDERPC98 "\037" +#define GUIO_RENDERPC9821 "\037" +#define GUIO_RENDERPC9801 "\040" #define GUIO0() (GUIO_NONE) #define GUIO1(a) (a) @@ -316,7 +317,8 @@ enum RenderMode { kRenderHercA = 5, kRenderAmiga = 6, kRenderFMTowns = 7, - kRenderPC98 = 8 + kRenderPC9821 = 8, + kRenderPC9801 = 9 }; struct RenderModeDescription { |