From f757ecaa29e409445c60aa84e66813c47a660e4c Mon Sep 17 00:00:00 2001 From: Michael Ratanapintha Date: Mon, 14 Aug 2017 21:49:42 -0700 Subject: [PATCH] ColorTool: Fix the included all.bat batch file This batch file doesn't work if you use build.bat to build the program, as all.bat looks for ct.exe rather than colortool.exe. Fortunately, fixing the batch file is almost as easy as working around its bug manually. --- tools/ColorTool/all.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/ColorTool/all.bat b/tools/ColorTool/all.bat index 8602076c4..8161cba5e 100644 --- a/tools/ColorTool/all.bat +++ b/tools/ColorTool/all.bat @@ -9,6 +9,6 @@ rem All of the previously viewed tables will display the current scheme's co for %%i in (schemes\*) do ( echo %%i - ct.exe "%%i" + .\colortool.exe "%%i" pause -) \ No newline at end of file +)