SNES: Make the unsupported reads on i/o open bus, fixes a layer enable in Super Kick Boxing

This commit is contained in:
Angelo Salese 2009-08-08 17:51:18 +00:00
parent 0102fbe6ab
commit ea23fba274

View File

@ -587,8 +587,8 @@ READ8_HANDLER( snes_r_io )
}
/* Unsupported reads return 0xff */
return 0xff;
/* Unsupported reads returns open bus */
return snes_open_bus_r(space,0);
}
/*