mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-04 18:05:06 +01:00
[win32] minor fixes
This commit is contained in:
parent
936bb81bc0
commit
c294796fdc
@ -2697,10 +2697,6 @@ static void vdp_z80_data_w_ms(unsigned int data)
|
||||
/* VRAM address */
|
||||
index = addr & 0x3FFF;
|
||||
|
||||
#ifdef LOGVDP
|
||||
error("[%d(%d)][%d(%d)] VRAM 0x%x write -> 0x%x (%x)\n", v_counter, mcycles_z80/MCYCLES_PER_LINE-1, mcycles_z80, mcycles_z80%MCYCLES_PER_LINE, index, data, Z80.pc.w.l);
|
||||
#endif
|
||||
|
||||
/* VRAM write */
|
||||
if (data != vram[index])
|
||||
{
|
||||
@ -2768,10 +2764,6 @@ static void vdp_z80_data_w_gg(unsigned int data)
|
||||
/* VRAM address */
|
||||
index = addr & 0x3FFF;
|
||||
|
||||
#ifdef LOGVDP
|
||||
error("[%d(%d)][%d(%d)] VRAM 0x%x write -> 0x%x (%x)\n", v_counter, mcycles_z80/MCYCLES_PER_LINE-1, mcycles_z80, mcycles_z80%MCYCLES_PER_LINE, index, data, Z80.pc.w.l);
|
||||
#endif
|
||||
|
||||
/* VRAM write */
|
||||
if (data != vram[index])
|
||||
{
|
||||
|
@ -669,7 +669,7 @@ int main (int argc, char **argv)
|
||||
}
|
||||
|
||||
/* mark all BIOS as unloaded */
|
||||
config.bios &= 0x01;
|
||||
config.bios &= 0x03;
|
||||
|
||||
/* Genesis BOOT ROM support (2KB max) */
|
||||
memset(boot_rom, 0xFF, 0x800);
|
||||
|
Loading…
Reference in New Issue
Block a user