From 306a97812f969f724414391c75871596d58b9964 Mon Sep 17 00:00:00 2001 From: Hugh Sanderson Date: Tue, 27 Aug 2024 11:09:16 +0800 Subject: [PATCH] Update the 'out of date' counter. For #1142 --- toolchain/haxe-target.xml | 4 ++-- tools/hxcpp/BuildTool.hx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/toolchain/haxe-target.xml b/toolchain/haxe-target.xml index fd2134137..076dce221 100644 --- a/toolchain/haxe-target.xml +++ b/toolchain/haxe-target.xml @@ -1,7 +1,7 @@ - + @@ -12,7 +12,7 @@ - + diff --git a/tools/hxcpp/BuildTool.hx b/tools/hxcpp/BuildTool.hx index e5103747a..cd809ff00 100644 --- a/tools/hxcpp/BuildTool.hx +++ b/tools/hxcpp/BuildTool.hx @@ -2334,8 +2334,8 @@ class BuildTool public function checkToolVersion(inVersion:String) { var ver = Std.parseInt(inVersion); - if (ver>3) - Log.error("Your version of hxcpp.n is out-of-date. Please update."); + if (ver>4) + Log.error("Your version of hxcpp.n is out-of-date. Please update by compiling 'haxe compile.hxml' in hxcpp/tools/hxcpp."); } public function resolvePath(inPath:String)