diff --git a/.gitignore b/.gitignore index 213b07be7..248c7a771 100644 --- a/.gitignore +++ b/.gitignore @@ -23,6 +23,7 @@ Debug Release Windows/x64 Windows/ipch +Windows/bin-release ui_atlas.zim.png android/assets # For Mac diff --git a/Windows/build-x64.cmd b/Windows/build-x64.cmd index 20131318a..8a878c4f9 100644 --- a/Windows/build-x64.cmd +++ b/Windows/build-x64.cmd @@ -39,7 +39,7 @@ if not exist %PPSSPP_ROOT%\%RELEASEX64% ( ) call msbuild PPSSPP.sln /t:Clean %DBG_PPSSPP% /m call msbuild PPSSPP.sln /t:Build %DBG_PPSSPP% /m -if not exist %PPSSPP_ROOT%\%RELEASEX64% ( +if not exist %PPSSPP_ROOT%\%DEBUGX64% ( echo Debug build failed. goto Quit ) diff --git a/Windows/build-x86.cmd b/Windows/build-x86.cmd index fe6db682c..895ab1a45 100644 --- a/Windows/build-x86.cmd +++ b/Windows/build-x86.cmd @@ -39,7 +39,7 @@ if not exist %PPSSPP_ROOT%\%RELEASEX86% ( ) call msbuild PPSSPP.sln /t:Clean %DBG_PPSSPP% /m call msbuild PPSSPP.sln /t:Build %DBG_PPSSPP% /m -if not exist %PPSSPP_ROOT%\%RELEASEX86% ( +if not exist %PPSSPP_ROOT%\%DEBUGX86% ( echo Debug build failed. goto Quit )