its running mala and the latest build of mame..
when i got to save it keeps saying save failed due to anonymous timer errors.. is there anyway round this so i can save with these games? i know others use save states for these games with no probs

Code: Select all
static INTERRUPT_GEN( cave_interrupt )
{
timer_set(ATTOTIME_IN_USEC(17376-time_vblank_irq), NULL, 0, cave_vblank_start);
timer_set(ATTOTIME_IN_USEC(17376-time_vblank_irq + 2000), NULL, 0, cave_vblank_end);
}
Code: Select all
static INTERRUPT_GEN( cave_interrupt )
{
timer_set(ATTOTIME_IN_USEC(0), NULL, 0, cave_vblank_start);
timer_set(ATTOTIME_IN_USEC(2000), NULL, 0, cave_vblank_end);
}