Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- LAUNCHING RETROARCH:
- ECHO OFF
- REM Launching retroarch: RETROARCH.EXE %1 %2 %3 %5
- REM %4 is the platform type we will use to set the refresh rate
- REM Set refresh rate for console
- RatRefresh.exe -edidfile edid.txt -file refreshrates.txt -get %4;%4
- REM Give monitor a moment to regain sanity or retroarch will not launch
- timeout /t 3 /NOBREAK
- retroarch.exe %1 %2 %3 %5
- REM Set refresh back to native
- RatRefresh.exe -edidfile edid.txt -file refreshrates.txt -get default;default
- LAUNCHING MAME:
- ECHO OFF
- REM Set refresh rate to game %9 is the rom name
- RatRefresh.exe -edidfile edid.txt -file refreshrates.txt -get %9;mame
- REM Give monitor a moment to regain sanity or mame will not launch
- timeout /t 1 /NOBREAK
- REM Launch Mame with launchbox commad-line options
- mame64.exe %*
- REM Set display back to native refresh rate
- RatRefresh.exe -edidfile edid.txt -file refreshrates.txt -get default;default
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement