From 0e8e93f1e5c743817a739d953d67375e1191291d Mon Sep 17 00:00:00 2001 From: AzaezelX Date: Wed, 28 Sep 2022 18:13:59 -0500 Subject: [PATCH] lock in version point --- Engine/source/app/version.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Engine/source/app/version.h b/Engine/source/app/version.h index 937ecc274..c6e044e6c 100644 --- a/Engine/source/app/version.h +++ b/Engine/source/app/version.h @@ -41,10 +41,10 @@ /// code version, the game name, and which type of game it is (TGB, TGE, TGEA, etc.). /// /// Version number is major * 1000 + minor * 100 + revision * 10. -#define TORQUE_GAME_ENGINE 4000 +#define TORQUE_GAME_ENGINE 4001 /// Human readable engine version string. -#define TORQUE_GAME_ENGINE_VERSION_STRING "4.0.0" +#define TORQUE_GAME_ENGINE_VERSION_STRING "4.0.1" /// Gets the engine version number. The version number is specified as a global in version.cc U32 getVersionNumber();