View difference between Paste ID: yigFfica and Guf5meKn
SHOW: | | - or go back to the newest paste.
1
:: This search where the bat file is, so you must put it where pcsx2.exe is in order to work.
2
cd /d "%~dp0"
3
4
:: This sets only the name of the game in %str% and the full path in %executable%, Don't touch this.
5
set str=%~n1
6
set executable=%1
7
set executable=%executable:.cue=.bin%
8-
echo.%str%
8+
9
:: This launches the emulator, it uses the %str% for searching the game folder, and %executable% to launch the game. Don't touch this.
10-
:: This launches the emulator, it uses the %str% for searching the game folder, and %executable% to launch the rom. Don't touch this.
10+
start "" pcsx2.exe --fullscreen --portable --nogui --cfgpath=".\configs\%str%" %executable%