Removed not used ifdef section from winmain.c and MESS dependent ifdef from saa5050.c, this doesn't affect MAME at all (no whatsnew)

This commit is contained in:
Miodrag Milanovic 2011-01-17 18:30:36 +00:00
parent f564f036f1
commit dfdc249c0d
2 changed files with 0 additions and 9 deletions

View File

@ -233,9 +233,7 @@ void saa5050_update( device_t *device, bitmap_t *bitmap, const rectangle *clipre
switch (code) switch (code)
{ {
case 0x00: case 0x00:
#ifndef MESS
blank = 1; // code 0x00 should not display anything, unless HOLDGR is set blank = 1; // code 0x00 should not display anything, unless HOLDGR is set
#endif
break; break;
case 0x01: case 0x02: case 0x03: case 0x04: case 0x01: case 0x02: case 0x03: case 0x04:
case 0x05: case 0x06: case 0x07: case 0x05: case 0x06: case 0x07:

View File

@ -256,13 +256,6 @@ static HANDLE watchdog_thread;
static running_machine *g_current_machine; static running_machine *g_current_machine;
#ifndef MESS
static const TCHAR helpfile[] = TEXT("docs\\windows.txt");
#else
static const TCHAR helpfile[] = TEXT("mess.chm");
#endif
//static HANDLE mm_task = NULL; //static HANDLE mm_task = NULL;
//static DWORD task_index = 0; //static DWORD task_index = 0;
static int timeresult; static int timeresult;