QApple fix name of video types.

Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
This commit is contained in:
Andrea Odetti 2020-10-18 18:43:45 +01:00
parent b5630539df
commit da37dfe17c
2 changed files with 12 additions and 7 deletions

View file

@ -500,12 +500,17 @@
</item>
<item>
<property name="text">
<string>Color (RGB Monitor)</string>
<string>Color (Composite Idealized)</string>
</property>
</item>
<item>
<property name="text">
<string>Color (NTSC Monitor)</string>
<string>Color (RGB Card/Monitor)</string>
</property>
</item>
<item>
<property name="text">
<string>Color (Composite Monitor)</string>
</property>
</item>
<item>

View file

@ -89,15 +89,15 @@ static bool g_bVideoScannerNTSC = true; // NTSC video scanning (or PAL)
// The window title will be set to this.
const char *g_apVideoModeDesc[ NUM_VIDEO_MODES ] =
{
"Monochrome Monitor (Custom)"
"Monochrome (Custom)"
, "Color (Composite Idealized)"
, "Color (RGB Monitor)"
, "Color (RGB Card/Monitor)"
, "Color (Composite Monitor)"
, "Color TV"
, "B&W TV"
, "Amber Monitor"
, "Green Monitor"
, "White Monitor"
, "Monochrome (Amber)"
, "Monochrome (Green)"
, "Monochrome (White)"
};
static void videoCreateDIBSection();