Added a 'use_default_ui' prompt in modman_debug.bat

This commit is contained in:
Vhati 2017-12-11 23:38:47 -05:00
parent 987e784cbe
commit be6919f3cb

View file

@ -15,13 +15,28 @@ ECHO.
ECHO When it exits, logs will be presented in multiple notepad windows. ECHO When it exits, logs will be presented in multiple notepad windows.
ECHO. ECHO.
ECHO. ECHO.
PAUSE
ECHO. ECHO.
ECHO Some users reported interface glitches if they had custom Windows themes.
ECHO Setting 'use_default_ui=true' in modman.cfg is a workaround.
ECHO.
SET /P YN="Create a new modman.cfg to do this? (y/N): "
ECHO.
IF /I [%YN%]==[y] (
ECHO Creating a new config.
ECHO use_default_ui=true>modman.cfg
ECHO.
)
ECHO.
ECHO Running Slipstream... ECHO Running Slipstream...
ECHO. ECHO.
"%~dp0modman_admin.exe" --l4j-debug "%~dp0modman_admin.exe" --l4j-debug
ECHO Spawning notepad... ECHO Spawning notepad...
ECHO. ECHO.
IF EXIST "%L4J_LOG_PATH%" ( IF EXIST "%L4J_LOG_PATH%" (
@ -40,6 +55,7 @@ IF EXIST "%SMM_LOG_PATH%" (
ECHO Missing log: "%SMM_LOG_NAME%" ECHO Missing log: "%SMM_LOG_NAME%"
) )
ECHO. ECHO.
ECHO. ECHO.
ECHO Interesting logs can be pasted on the FTL forum between [code] [/code] tags. ECHO Interesting logs can be pasted on the FTL forum between [code] [/code] tags.