mirror of
https://github.com/holub/mame
synced 2025-07-01 00:09:18 +03:00
MSVC fixes
This commit is contained in:
parent
ffa881c76e
commit
1632ab472c
@ -431,7 +431,7 @@ void sandy_superqboard_t::write(address_space &space, offs_t offset, UINT8 data)
|
||||
break;
|
||||
|
||||
case 5:
|
||||
m_fdc->set_unscaled_clock(XTAL_16MHz >> !BIT(data, 0));
|
||||
m_fdc->set_unscaled_clock(XTAL_16MHz / (BIT(data, 0) ? 1 : 2));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -6,7 +6,6 @@
|
||||
//
|
||||
//============================================================
|
||||
|
||||
#define NOWINRES
|
||||
#include "windows.h"
|
||||
#include "commctrl.h"
|
||||
#include "messvers.rc"
|
||||
|
Loading…
Reference in New Issue
Block a user