hey folks, tried with no luck or success in getting a wrapper working to send specific command line details to launch Daphne from MameWah.
I have gone back to trying the batch file method. Logically a batch file in XP should work? I've looked up a few batch sites on the net to try and get syntax right - but this batch still doesn't run correctly.
It ignores the IF statements and run's any game from MW (with Daphne menu) using the first command line settings in the batch file.
IF %1==astron GOTO :AST
IF %1==badlands GOTO :BAD
:AST
start /wait d:\daphne\daphne.exe %1 vldp -framefile d:\daphne\framefile\%1.txt -fullscreen -nohwaccel
GOTO END
:BAD
start /wait d:\daphne\daphne.exe %1 vldp -framefile d:\daphne\framefile\%1.txt -fullscreen -preset 2 -bank 0 00000000 -bank 1 10000011 -nohwaccel -latency 150
GOTO END
:END
exit
Now, I'm no programmer, but I have written batch files before (simple backup batch to copy files each night).
I can't figure out why this batch just skips and runs each and every game with the settings in the :AST label.
I've tried putting the inverted commas in the -
IF %1=="astron" conditions, but no change.
Can anyone help with this? I would have thought someone may have used this out there before?
Thanks again
Alex