Super Kaneko Nova System

Discussion of playback questions / problems. Any recording where people have playback problems should appear here.

Moderator: Chad

Post Reply
User avatar
Kale
MARP Seer
MARP Seer
Posts: 655
Joined: Fri Mar 08, 2002 5:53 pm

Super Kaneko Nova System

Post 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...
User avatar
sikraiken
MARP Seer
MARP Seer
Posts: 720
Joined: Wed Feb 06, 2002 3:28 pm

Post 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.
User avatar
Kale
MARP Seer
MARP Seer
Posts: 655
Joined: Fri Mar 08, 2002 5:53 pm

Post 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...
User avatar
Chad
Tournament Coordinator
Posts: 4463
Joined: Tue Mar 05, 2002 3:15 pm
Location: calif

Post 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.
-skito
User avatar
Kale
MARP Seer
MARP Seer
Posts: 655
Joined: Fri Mar 08, 2002 5:53 pm

Report

Post 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...
Post Reply