vgmplay.cpp : Fix qsound pitch

This commit is contained in:
cam900 2018-03-16 01:07:59 +09:00 committed by Vas Crabb
parent 78f0aff27f
commit ba278b8f03

View File

@ -1345,7 +1345,7 @@ void vgmplay_state::machine_start()
}
}
if(version >= 0x161 && r32(0xb4)) {
m_qsound->set_unscaled_clock(r32(0xb4));
m_qsound->set_unscaled_clock(r32(0xb4) * 15); // * 15 multipler for correct pitch
}
}