Changed app window's title to reflect NTSC or PAL for 'Color (xxx Monitor)'

This commit is contained in:
tomcw
2020-08-17 18:29:18 +01:00
parent 4d611c20d9
commit 221e35edc7
3 changed files with 16 additions and 5 deletions
+8 -2
View File
@@ -112,11 +112,11 @@ static LPDIRECTDRAW g_lpDD = NULL;
// NOTE: KEEP IN SYNC: VideoType_e g_aVideoChoices g_apVideoModeDesc
// The window title will be set to this.
char *g_apVideoModeDesc[ NUM_VIDEO_MODES ] =
const char *g_apVideoModeDesc[ NUM_VIDEO_MODES ] =
{
"Monochrome Monitor (Custom)"
, "Color (RGB Monitor)"
, "Color (NTSC Monitor)"
, "Color (NTSC/PAL Monitor)"
, "Color TV"
, "B&W TV"
, "Amber Monitor"
@@ -124,6 +124,12 @@ static LPDIRECTDRAW g_lpDD = NULL;
, "White Monitor"
};
const char *g_apVideoMonitorModeDesc[ 2 ] =
{
"Color (NTSC Monitor)"
, "Color (PAL Monitor)"
};
// Prototypes (Private) _____________________________________________
bool g_bDisplayPrintScreenFileName = false;