From 1479219f7a30ee95f2a9d79310566d930f8f3de6 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Thu, 21 Jan 2016 23:21:10 +0100 Subject: COMMON: Add render modes for Apple IIgs and Atari ST. On request of m_kiewitz who wants to use it for AGI. --- common/gui_options.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'common/gui_options.cpp') diff --git a/common/gui_options.cpp b/common/gui_options.cpp index d79bf1b82f..ab5a132849 100644 --- a/common/gui_options.cpp +++ b/common/gui_options.cpp @@ -62,6 +62,8 @@ const struct GameOpt { { GUIO_RENDERFMTOWNS, "fmtowns" }, { GUIO_RENDERPC9821, "pc9821" }, { GUIO_RENDERPC9801, "pc9801" }, + { GUIO_RENDERAPPLE2GS, "2gs" }, + { GUIO_RENDERATARIST, "atari" }, { GUIO_GAMEOPTIONS1, "gameOption1" }, { GUIO_GAMEOPTIONS2, "gameOption2" }, -- cgit v1.2.3 From b166cb84e2b57714c1817d4e69e98acd2cd455b6 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Thu, 21 Jan 2016 23:48:48 +0100 Subject: COMMON: Use spaces for beautifying formatting. --- common/gui_options.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'common/gui_options.cpp') diff --git a/common/gui_options.cpp b/common/gui_options.cpp index ab5a132849..679d04b50b 100644 --- a/common/gui_options.cpp +++ b/common/gui_options.cpp @@ -53,17 +53,17 @@ const struct GameOpt { { GUIO_NOASPECT, "noAspect" }, - { GUIO_RENDERHERCGREEN, "hercGreen" }, - { GUIO_RENDERHERCAMBER, "hercAmber" }, - { GUIO_RENDERCGA, "cga" }, - { GUIO_RENDEREGA, "ega" }, - { GUIO_RENDERVGA, "vga" }, - { GUIO_RENDERAMIGA, "amiga" }, - { GUIO_RENDERFMTOWNS, "fmtowns" }, - { GUIO_RENDERPC9821, "pc9821" }, - { GUIO_RENDERPC9801, "pc9801" }, - { GUIO_RENDERAPPLE2GS, "2gs" }, - { GUIO_RENDERATARIST, "atari" }, + { GUIO_RENDERHERCGREEN, "hercGreen" }, + { GUIO_RENDERHERCAMBER, "hercAmber" }, + { GUIO_RENDERCGA, "cga" }, + { GUIO_RENDEREGA, "ega" }, + { GUIO_RENDERVGA, "vga" }, + { GUIO_RENDERAMIGA, "amiga" }, + { GUIO_RENDERFMTOWNS, "fmtowns" }, + { GUIO_RENDERPC9821, "pc9821" }, + { GUIO_RENDERPC9801, "pc9801" }, + { GUIO_RENDERAPPLE2GS, "2gs" }, + { GUIO_RENDERATARIST, "atari" }, { GUIO_GAMEOPTIONS1, "gameOption1" }, { GUIO_GAMEOPTIONS2, "gameOption2" }, -- cgit v1.2.3 From 354a3af717bb1c426d8ad793aa2201c77aad41fd Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Fri, 22 Jan 2016 01:20:37 +0100 Subject: COMMON: Add another GUIO game option flag. We still can only display 7 options in our GUI though. Blame m_kiewitz if anybody runs into that issue now. He wanted this. --- common/gui_options.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'common/gui_options.cpp') diff --git a/common/gui_options.cpp b/common/gui_options.cpp index 679d04b50b..641daf5ae6 100644 --- a/common/gui_options.cpp +++ b/common/gui_options.cpp @@ -72,6 +72,7 @@ const struct GameOpt { { GUIO_GAMEOPTIONS5, "gameOption5" }, { GUIO_GAMEOPTIONS6, "gameOption6" }, { GUIO_GAMEOPTIONS7, "gameOption7" }, + { GUIO_GAMEOPTIONS8, "gameOption8" }, { GUIO_NONE, 0 } }; -- cgit v1.2.3 From 29b37f473cf7fdab300d3a2cc389741722495fb1 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Fri, 5 Feb 2016 12:38:28 +0100 Subject: COMMON: Add render mode for Macintosh. On request of m_kiewitz who wants to use it for AGI. --- common/gui_options.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'common/gui_options.cpp') diff --git a/common/gui_options.cpp b/common/gui_options.cpp index 641daf5ae6..473f78c795 100644 --- a/common/gui_options.cpp +++ b/common/gui_options.cpp @@ -64,6 +64,7 @@ const struct GameOpt { { GUIO_RENDERPC9801, "pc9801" }, { GUIO_RENDERAPPLE2GS, "2gs" }, { GUIO_RENDERATARIST, "atari" }, + { GUIO_RENDERMACINTOSH, "macintosh" }, { GUIO_GAMEOPTIONS1, "gameOption1" }, { GUIO_GAMEOPTIONS2, "gameOption2" }, -- cgit v1.2.3 From b6dbc79021be137367372faa3b53081e7a332efd Mon Sep 17 00:00:00 2001 From: Colin Snover Date: Sat, 2 Jul 2016 20:56:29 -0500 Subject: SCI32: Add support for blacklined video Ow. My eyeballs. --- common/gui_options.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'common/gui_options.cpp') diff --git a/common/gui_options.cpp b/common/gui_options.cpp index 473f78c795..df880f4fee 100644 --- a/common/gui_options.cpp +++ b/common/gui_options.cpp @@ -74,6 +74,7 @@ const struct GameOpt { { GUIO_GAMEOPTIONS6, "gameOption6" }, { GUIO_GAMEOPTIONS7, "gameOption7" }, { GUIO_GAMEOPTIONS8, "gameOption8" }, + { GUIO_GAMEOPTIONS9, "gameOption9" }, { GUIO_NONE, 0 } }; -- cgit v1.2.3