Video Mode in Window Title

This commit is contained in:
mpohoreski 2009-02-18 16:54:32 +00:00
parent 34ca9416c3
commit ccc8669a18

View File

@ -531,13 +531,15 @@ static void DrawStatusArea (HDC passdc, int drawflags)
// TODO: g_bDisplayVideoModeInTitle
if( 1 )
{
extern char *g_apVideoModeDesc[ NUM_VIDEO_MODES ];
_tcscat( title, " - " );
_tcscat( title, g_apVideoModeDesc[ g_eVideoType ] );
if( g_uHalfScanLines )
{
_tcscat( title," (50%)" );
_tcscat( title," 50% " );
}
extern char *g_apVideoModeDesc[ NUM_VIDEO_MODES ];
_tcscat( title, g_apVideoModeDesc[ g_eVideoType ] );
}
if (g_hCustomRomF8 != INVALID_HANDLE_VALUE)