void pcd_state_loaded(void)
{
unsigned int cycles;
- int diff;
pcd_state_loaded_mem();
// old savestates..
cycles = pcd_cycles_m68k_to_s68k(Pico.t.m68c_aim);
- if (CYCLES_GE(cycles - SekCycleAimS68k, 1000)) {
+ if (CYCLES_GE(cycles - SekCycleAimS68k, 12500000/60)) {
SekCycleCntS68k = SekCycleAimS68k = cycles;
}
if (pcd_event_times[PCD_EVENT_CDC] == 0) {
(Pico_mcd->s68k_regs[0x31]+1) * 384);
}
- diff = cycles - Pico_mcd->pcm.update_cycles;
- if ((unsigned int)diff > 12500000/50)
+ if (CYCLES_GE(cycles - Pico_mcd->pcm.update_cycles, 12500000/50))
Pico_mcd->pcm.update_cycles = cycles;
if (Pico_mcd->m.need_sync) {
if ((int)(to - cycles) < 384)
return;
- steps = (to - cycles) / 384;
+ steps = (to - cycles) * ((1LL << 32) / 384) >> 32;
if (Pico_mcd->pcm_mixpos + steps > PCM_MIXBUF_LEN)
// shouldn't happen, but occasionally does
steps = PCM_MIXBUF_LEN - Pico_mcd->pcm_mixpos;
else {
while (length-- > 0) {
// mostly unused
- *buf32++ += pcm[0];
+ *buf32++ += (pcm[0] + pcm[1]) >> 1;
p += step;
pcm += (p >> 16) * 2;