MAMETesters Bugs Fixed

----------------------
 - 07472: [Crash/Freeze] (snes.cpp) When starting a game with SNES (PAL), MAME crash (Ryan Holtz)
This commit is contained in:
mooglyguy 2019-11-03 02:50:34 +01:00 committed by MooglyGuy
parent cabfd7188a
commit fd1b81e5cc
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@
#define SNES_PAL 0x10
#define SNES_LAYER_DEBUG 1
#define SNES_LAYER_DEBUG 0
// ======================> snes_ppu_device

View File

@ -1385,7 +1385,7 @@ void snes_console_state::snespal(machine_config &config)
snes(config);
m_maincpu->set_clock(MCLK_PAL);
m_screen->set_raw(DOTCLK_PAL, SNES_HTOTAL, 0, SNES_SCR_WIDTH, SNES_VTOTAL_PAL, 0, SNES_SCR_HEIGHT_PAL);
m_screen->set_raw(DOTCLK_PAL * 2, SNES_HTOTAL * 2, 0, SNES_SCR_WIDTH * 2, SNES_VTOTAL_PAL, 0, SNES_SCR_HEIGHT_PAL);
m_ppu->set_clock(MCLK_PAL);
m_cartslot->set_clock(MCLK_PAL);