Page 1 of 1

Super Kaneko Nova System

Posted: Fri Nov 22, 2002 4:50 pm
by Kale
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...

Posted: Fri Nov 22, 2002 6:18 pm
by sikraiken
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.

Posted: Fri Nov 22, 2002 7:22 pm
by Kale
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.
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...

Posted: Sat Nov 23, 2002 12:38 am
by Chad
i can't get any galpanis recording to playback, it always goes to a locked blank screen eventually, no mattter what mame i use.

Report

Posted: Fri Nov 29, 2002 7:03 pm
by Kale
Yes it's due to the RTC.
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);

Into this...

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);
It will initialize the Timer at every time you play/record an .inp...