Build Your Own Arcade Controls Forum
Main => Software Forum => Topic started by: abispac on September 01, 2010, 05:38:43 pm
-
Does anyone knows how to make save states work in neo geo games? i allready know how to use the function but for some reason they dont seem to work in neogeo games...im using mame 138 compiled for highscore. Thanks
-
dyli bump, anyone....?
-
Hmm, try using 139u1, I have had some trouble with 138 too.
There was some problem with savestaes that they worked out in 139u1
PM Sent
-
Hmm, try using 139u1, I have had some trouble with 138 too.
There was some problem with savestaes that they worked out in 139u1
PM Sent
shoot i should read this before, ill give it a try, thanks
-
I still have the problem, the save state function works ok if i used manually, if i set a state with shift f7, then i can load a state with f7, but the auto save state does not work, it comes out with a message that says error loading savestate...im hoping that theres a tweak to fix this... thanks for any help
-
I still have the problem, the save state function works ok if i used manually, if i set a state with shift f7, then i can load a state with f7, but the auto save state does not work, it comes out with a message that says error loading savestate...im hoping that theres a tweak to fix this... thanks for any help
Hmm, then maybe your rom is out of date, don't know then
-
nope, latest romset.....and downloaded the new mame 139b and savestate dosnt seem to work on neogeo games and also i tried pacman and galaga and neither of them work...can someone confirm this?
-
dumb me, the error was on the mame.ini file i had sate 1 and was stae auto, thanks for the help
-
dumb me, the error was on the mame.ini file i had sate 1 and was stae auto, thanks for the help
Why would you do that? Does it let you pick up right where you left off?
-
heres what im doing, im using hyperspin for a front end, with neogeo games only ,so when i launch a game it kind of sucks that every single games has to go to boot up proces showing the neogeo bios green screen. so what i do its , i set save state to auto in the mame.ini file, then i start a game, as soon as i get to ne neogeo logo and music in the game, i hit escape, then i go to the sta folder in mame , i look for the auto.sta file for that game and set the properties to read file only, that way when the game starts up again ,it starts right at the neogeo logo screen, if you wanto to use that function to just start where you left, just live the auto file properties along and youll be fine.
I also compile my own version of mame for a step further, i found this lines at machine.c
case STATERR_NONE:
if (!(machine->gamedrv->flags & GAME_SUPPORTS_SAVE))
popmessage("State successfully $.\nWarning: Save states are not officially supported for this game.");
else
popmessage("State successfully $.");
break;
erased the lines
case STATERR_NONE:
if (!(machine->gamedrv->flags & GAME_SUPPORTS_SAVE))
break;
now when evry game starts i dont get that scuare saying that the sate was succesfully loaded, and i have a more clean aracade look. if you need help let me know.