COMMON: added zx spectrum render mode

This commit is contained in:
neuromancer 2022-12-23 16:27:17 -03:00
parent bcbd5dd6a3
commit 6841227241
2 changed files with 2 additions and 0 deletions

View File

@ -48,6 +48,7 @@ const RenderModeDescription g_renderModes[] = {
{ "macintosh", "Macintosh", kRenderMacintosh },
// I18N: Macintosh black-and-white
{ "macintoshbw", _s("Macintosh b/w"), kRenderMacintoshBW },
{ "zx", "ZX Spectrum", kRenderZX },
{nullptr, nullptr, kRenderDefault}
};

View File

@ -60,6 +60,7 @@ enum RenderMode {
kRenderMacintoshBW = 13,
kRenderCGAComp = 14,
kRenderCGA_BW = 15,
kRenderZX = 15,
};
struct RenderModeDescription {