Advertisement
RyzaJr

[BATCH] retroarch-joypadconfig

Apr 10th, 2015
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.45 KB | None | 0 0
  1. ::This batch file will create a controller config profile for use with RetroArch emulator.
  2.  
  3. @echo off
  4.  
  5. set OUTPUT_PATH= %cd%\autoconfig
  6.  
  7. ::===========================================
  8.  
  9. echo What name would you like to call this controller profile?
  10. echo.
  11. set /p OUTPUT_NAME= "Name: "
  12.  
  13. ::===========================================
  14.  
  15. set OUTPUT_PATH=%OUTPUT_PATH:"=%
  16.  
  17. cls
  18. retroarch-joyconfig -a %OUTPUT_PATH%\%OUTPUT_NAME%.cfg
  19.  
  20. echo.
  21. pause
  22. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement