vapor trail music tempo fix

This commit is contained in:
dinkc64 2015-01-27 08:29:19 +00:00
parent aee38ec15a
commit 223f452d76
1 changed files with 2 additions and 2 deletions

View File

@ -387,7 +387,7 @@ static INT32 DrvInit(INT32 type)
SekSetReadByteHandler(0, vaportra_main_read_byte);
SekClose();
deco16SoundInit(DrvHucROM, DrvHucRAM, 8055000, 1, NULL, 0.60, 1006875, 0.75, 2013750, 0.60);
deco16SoundInit(DrvHucROM, DrvHucRAM, 8055000 / 3, 1, NULL, 0.60, 1006875, 0.75, 2013750, 0.60);
BurnYM2203SetAllRoutes(0, 0.60, BURN_SND_ROUTE_BOTH);
GenericTilesInit();
@ -539,7 +539,7 @@ static INT32 DrvFrame()
INT32 nInterleave = 232;
INT32 nSoundBufferPos = 0;
INT32 nCyclesTotal[2] = { 12000000 / 58, 8055000 / 58 };
INT32 nCyclesTotal[2] = { 12000000 / 58, 8055000 / 3 / 58 };
INT32 nCyclesDone[2] = { 0, 0 };
h6280NewFrame();