Parqer said
KyaeroSaber said
Hmm... as bare bones as possible would look something like this:
@echo off
set game=%1%
set daemon="C:\Program Files (x86)\DAEMON Tools Pro\DTAgent.exe"
set emu="***SSF.exe LOCATION***\SSF.exe"
%daemon% -mount 0, %game%
start /wait "" %emu%
%daemon% -unmount 0
As long as each game's .cue is in the same folder as its .bin/.mp3s/etc then the .cues you imported into LaunchBox as Saturn roms should mount and play just fine; .mdf/.mds should work the same way as .bin/.cue. The other .cues don't have to be in the same folder, it's just the quirky way I do it (makes mass rom import easier).
Thanks for taking the time to share the bat. Would you happen to know how to change this code to use MagicISO instead? I tried plugging in the program-specific command line (%daemon% NULL -mnt d: %game%) with %daemon% pointing to my MagicISO installation directory and exe and d: being my virtual drive, but it fails to load the image. I'm transistioning to Launchbox from Gameex, which worked with MagicISO. MagicISO has been rock-solid for me when using it with SSF. If it's possible to use it here, I'd recommend it.
In case anyone's interested in using MagicISO with SSF in Launchbox, I finally got it to work by making the changes to KyaeroSaber's original bat below:
@echo off
set game=%1%
set daemon="C:\Program Files (x86)\MagicISO\miso.exe"
set emu="***SSF.exe LOCATION***\SSF.exe"
%daemon% NULL -mnt d: %game%
start /wait "" %emu%
%daemon% NULL -umnt 1
The d: in this instance is my virtual drive letter; change it to whatever letter you use for your virtual drive. It was failing to work for me for a while due to a typo I made while editing the original bat. Got it working today, and wanted to post it to make life easier for anyone else who prefers MagicISO for their virtual disc needs. Thanks again to KyaeroSaber for creating the original bat.