mirror of
https://github.com/libretro/RetroArch
synced 2025-01-26 09:35:21 +00:00
15 lines
281 B
Batchfile
15 lines
281 B
Batchfile
|
@echo off
|
||
|
|
||
|
for /f "tokens=* delims=" %%f in ('type rarch_main.xui') do CALL :DOREPLACE "%%f"
|
||
|
|
||
|
GOTO :EOF
|
||
|
:DOREPLACE
|
||
|
SET INPUT=%*
|
||
|
SET OUTPUT=%INPUT:RetroArchMain=RetroArchQuickMenu%
|
||
|
|
||
|
for /f "tokens=* delims=" %%g in ('ECHO %OUTPUT%') do ECHO %%~g>>rarch_quickmenu.xui
|
||
|
|
||
|
EXIT /b
|
||
|
|
||
|
:EOF
|