Removed the _DEBUG-only experimental video modes (eg. Emboss, Psychedelic, etc)

This commit is contained in:
tomcw 2014-07-10 22:52:26 +01:00
parent 60474fa9ec
commit 8637dfa7af
3 changed files with 7 additions and 1021 deletions

View File

@ -263,7 +263,7 @@ void ContinueExecution(void)
lastcycles = cumulativecycles;
if ((!anyupdates) && (!lastupdates[0]) && (!lastupdates[1]) && VideoApparentlyDirty())
{
VideoCheckPage(1);
VideoCheckPage(1); // force=1
static DWORD lasttime = 0;
DWORD currtime = GetTickCount();
if ((!g_bFullSpeed) ||

File diff suppressed because it is too large Load Diff

View File

@ -10,24 +10,9 @@
, VT_COLOR_STANDARD
, VT_COLOR_TEXT_OPTIMIZED
, VT_COLOR_TVEMU
#if _DEBUG
, VT_COLOR_HALF_SHIFT_DIM // Michael's 80's retro look --- must >= VT_COLOR_STANDARD && <= VT_COLOR_AUTHENTIC. See: V_CreateDIBSections()
, VT_ORG_COLOR_STANDARD
, VT_ORG_COLOR_TEXT_OPTIMIZED
, VT_COLOR_COLUMN_VISUALIZER
#endif
, VT_MONO_AMBER // now half pixel
, VT_MONO_GREEN // now half pixel
, VT_MONO_WHITE // now half pixel
#if _DEBUG
, VT_MONO_CUSTOM
, VT_MONO_COLORIZE
, VT_MONO_HALFPIXEL_COLORIZE
, VT_MONO_HALFPIXEL_75
, VT_MONO_HALFPIXEL_95
, VT_MONO_HALFPIXEL_EMBOSS
, VT_MONO_HALFPIXEL_FAKE
#endif
, NUM_VIDEO_MODES
};