sandscorpion: remove unneeded bootfix hack, eight forces: more volume
This commit is contained in:
parent
ee3fcd370c
commit
653a3e098c
|
@ -636,7 +636,6 @@ static INT32 DrvInit(INT32 type)
|
||||||
ZetMapMemory(DrvZ80RAM, 0xc000, 0xdfff, ZET_RAM);
|
ZetMapMemory(DrvZ80RAM, 0xc000, 0xdfff, ZET_RAM);
|
||||||
ZetSetOutHandler(sandscrp_sound_write_port);
|
ZetSetOutHandler(sandscrp_sound_write_port);
|
||||||
ZetSetInHandler(sandscrp_sound_read_port);
|
ZetSetInHandler(sandscrp_sound_read_port);
|
||||||
ZetSetVector(0xff); // Bootfix
|
|
||||||
ZetClose();
|
ZetClose();
|
||||||
|
|
||||||
BurnYM2203Init(1, 4000000, &DrvFMIRQHandler, DrvSynchroniseStream, DrvGetTime, 0);
|
BurnYM2203Init(1, 4000000, &DrvFMIRQHandler, DrvSynchroniseStream, DrvGetTime, 0);
|
||||||
|
|
|
@ -8106,6 +8106,8 @@ static INT32 eightfrcInit()
|
||||||
// Update sample length to include the banked section that was skipped (0xc0000 - 0xfffff)
|
// Update sample length to include the banked section that was skipped (0xc0000 - 0xfffff)
|
||||||
DrvROMLen[3] = 0x240000;
|
DrvROMLen[3] = 0x240000;
|
||||||
memmove(DrvSndROM + 0x100000, DrvSndROM + 0x0c0000, 0x140000); // sound banks (memcpy fails because of overlap!)
|
memmove(DrvSndROM + 0x100000, DrvSndROM + 0x0c0000, 0x140000); // sound banks (memcpy fails because of overlap!)
|
||||||
|
x1010_set_route(BURN_SND_X1010_ROUTE_2, 2.00, BURN_SND_ROUTE_RIGHT);
|
||||||
|
x1010_set_route(BURN_SND_X1010_ROUTE_1, 2.00, BURN_SND_ROUTE_LEFT);
|
||||||
}
|
}
|
||||||
|
|
||||||
return nRet;
|
return nRet;
|
||||||
|
|
Loading…
Reference in New Issue