Advertisement
Zerel

PCSX2 - Per game setting

May 22nd, 2020
341
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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.  
  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. start "" pcsx2.exe --fullscreen --portable --nogui --cfgpath=".\configs\%str%" %executable%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement