From afec2e2c4951830708587bb4df8bcf45a1e7c101 Mon Sep 17 00:00:00 2001 From: Engin Manap Date: Sat, 5 Oct 2019 19:23:02 +0200 Subject: [PATCH] Fix #2693 aiGetVersionMajor return wrong version The 2 constants MinorVersion and MajorVersion are updated for 5.0 --- code/Common/Version.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/Common/Version.cpp b/code/Common/Version.cpp index cc94340ac..868cfb06a 100644 --- a/code/Common/Version.cpp +++ b/code/Common/Version.cpp @@ -46,8 +46,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include #include "ScenePrivate.h" -static const unsigned int MajorVersion = 4; -static const unsigned int MinorVersion = 1; +static const unsigned int MajorVersion = 5; +static const unsigned int MinorVersion = 0; // -------------------------------------------------------------------------------- // Legal information string - don't remove this.