Added WinGDK check for Unreal Engine games

This commit is contained in:
cdozdil
2025-03-15 14:32:58 +03:00
parent f7a49d0d20
commit af5cfe9998
+12
View File
@@ -260,6 +260,18 @@ if exist Win64 (
set dlssFile=%%F
goto fileFound
)
) else (
if exist WinGDK (
echo.
echo Going to root folder of Unreal Engine game and searching again
cd ..
cd ..
for /f "delims=" %%F in ('dir /s /b %fileToSearch% 2^>nul') do (
set dlssFile=%%F
goto fileFound
)
)
)
:fileNotFound