diff options
author | 2014-09-29 18:22:30 +0000 | |
---|---|---|
committer | 2014-09-29 18:22:30 +0000 | |
commit | 80acf897236f85b7ebac181157202a2bb07f1666 (patch) | |
tree | e271a2a8906415deff3d30078e0aeb9993feb467 | |
parent | 5ab798d2c35f9d656d5f69a5343638ea21b10851 (diff) |
ATTN Kale: ddsom fails to enter ingame with this code you added
in rev. 25747. could you please take another look, when you have
time? or point me to a game which needs this code, so that I can
search for a solution which makes both happy? thanks. nw.
-rw-r--r-- | src/emu/machine/stvcd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/emu/machine/stvcd.c b/src/emu/machine/stvcd.c index 59f368ce4d7..16f02612b9a 100644 --- a/src/emu/machine/stvcd.c +++ b/src/emu/machine/stvcd.c @@ -2278,7 +2278,9 @@ void saturn_state::cd_readTOC(void) { if (cdrom) { - tocbuf[tocptr] = sega_cdrom_get_adr_control(cdrom, i); + //tocbuf[tocptr] = sega_cdrom_get_adr_control(cdrom, i); + //HACK: ddsom does not enter ingame with the line above! + tocbuf[tocptr] = cdrom_get_adr_control(cdrom, i)<<4 | 0x01; } else { |