Does these games really playbacks?
It has a RTC in it;also check this Gals Panic S recording in DMAME;it's supposed to playback for 8 stages but it loses sync at about the first stage...
Super Kaneko Nova System
Moderator: Chad
There's an "Extra change" in the recording I've uploaded here as well.Also in Gals Panic S2 if you finish the game it would give either a score and a time...JoeyL21988 wrote:I watched Donut's Gals Panic S2 recording fine. It wouldn't playback in MAME32, but it did play back in MAME for me. I just wanted to see how he played the game vs how I played it. I play by getting the "extra change", unlike him.But since there is no -true- scoring system, oh well.
Report
Yes it's due to the RTC.
Change this into your suprnova.c driver
Into this...
It will initialize the Timer at every time you play/record an .inp...
Change this into your suprnova.c driver
Code: Select all
static READ32_HANDLER( msm6242_r )
{
struct tm *tm;
time_t tms;
long value;
time(&tms);
tm = localtime(&tms);
Code: Select all
extern void *record;
extern void *playback;
static READ32_HANDLER( msm6242_r )
{
struct tm *tm;
time_t tms;
long value;
if(record != 0 || playback != 0)
return 0;
time(&tms);
tm = localtime(&tms);