@echo off cd sd @echo "Creating sd/rarch_quickmenu.xui ..." call :subroutine_a @echo "Creating sd/rarch_settings.xui ..." call :subroutine_b @echo "Creating sd/rarch_shader_browser.xui ..." call :subroutine_c @echo "Creating sd/rarch_filebrowser.xui ..." call :subroutine_d @echo "Creating sd/rarch_controls.xui ..." call :subroutine_e @echo "Creating sd/rarch_libretrocore_browser.xui ..." call :subroutine_f cd ../ cd hd @echo "Creating hd/rarch_quickmenu.xui ..." call :subroutine_a @echo "Creating hd/rarch_settings.xui ..." call :subroutine_b @echo "Creating hd/rarch_shader_browser.xui ..." call :subroutine_c @echo "Creating hd/rarch_filebrowser.xui ..." call :subroutine_d @echo "Creating hd/rarch_controls.xui ..." call :subroutine_e @echo "Creating hd/rarch_libretrocore_browser.xui ..." call :subroutine_f goto :eof :subroutine_a del rarch_quickmenu.xui 2>NUL call rarch_quickmenu.bat goto :eof :subroutine_b del rarch_settings.xui 2>NUL call rarch_settings.bat goto :eof :subroutine_c del rarch_shader_browser.xui 2>NUL call rarch_shader_browser.bat goto :eof :subroutine_d del rarch_filebrowser.xui 2>NUL call rarch_filebrowser.bat goto :eof :subroutine_e del rarch_controls.xui 2>NUL call rarch_controls.bat goto :eof :subroutine_f del rarch_libretrocore_browser.xui 2>NUL call rarch_libretrocore_browser.bat goto :eof