aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorathrxx2012-02-24 17:15:34 +0100
committerathrxx2012-02-24 18:09:38 +0100
commit3b574466fa3cb28c521234f5460164ade91a8d50 (patch)
treeda15dff984e0f1a0065145f2b3335cfdbb5ca949 /gui
parentecd1a9f9435c5fc5d502d75dd256394b5f3283f3 (diff)
downloadscummvm-rg350-3b574466fa3cb28c521234f5460164ade91a8d50.tar.gz
scummvm-rg350-3b574466fa3cb28c521234f5460164ade91a8d50.tar.bz2
scummvm-rg350-3b574466fa3cb28c521234f5460164ade91a8d50.zip
COMMON: distinguish between 256 colors and 16 colors PC-98 rendering modes
KYRA 1 PC-98 supports both modes in the same target. The desired mode can now be selected in the rendering options. We did have good support for the 16 colors mode of KYRA 1 already. This mode could not really be selected though (except by manually modifying the config file or the code).
Diffstat (limited to 'gui')
-rw-r--r--gui/options.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/options.cpp b/gui/options.cpp
index bfad81c07b..be1c091b89 100644
--- a/gui/options.cpp
+++ b/gui/options.cpp
@@ -1050,7 +1050,8 @@ Common::String OptionsDialog::renderType2GUIO(uint32 renderType) {
{ Common::kRenderVGA, GUIO_RENDERVGA },
{ Common::kRenderAmiga, GUIO_RENDERAMIGA },
{ Common::kRenderFMTowns, GUIO_RENDERFMTOWNS },
- { Common::kRenderPC98, GUIO_RENDERPC98 }
+ { Common::kRenderPC9821, GUIO_RENDERPC9821 },
+ { Common::kRenderPC9801, GUIO_RENDERPC9801 }
};
Common::String res;