I cant get .bat files to load within Attract Mode. They work within Windows fine but not Attract Mode.
Here is my Windows.cfg
# Generated by Attract-Mode v2.5.1
#
executable cmd
args /c "[romfilename]"
rompath \roms\pc
romext .bat
system PC Games
exit_hotkey Joy0 Button6+Joy0 Button7
artwork flyer \Attract Mode\scraper\Windows\flyer
artwork marquee \Attract Mode\scraper\Windows\marquee
artwork snap \Attract Mode\scraper\Windows\snap
artwork wheel \Attract Mode\scraper\Windows\wheel
Also here is a sample .bat file
@echo off
rem Run game application
cd .\Blade Strangers
start game.exe %*
You're using relative paths but don't define the working dirrectory in the Windows.cfg.
I would try (just to test)...
- use full paths and not relative paths (in both the Windows.cfg and *.bat file)
- define the working directory in the Windows.cfg (this could be problematic)