From 4d3e009c3ca89edc82b5a46481d4c4544140a556 Mon Sep 17 00:00:00 2001 From: Yosi Levy Date: Thu, 13 Nov 2014 12:47:37 -0600 Subject: [PATCH] Update main.cpp make it return the correct version string, regardless of version. --- jni/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jni/main.cpp b/jni/main.cpp index 3f43933..0e83618 100644 --- a/jni/main.cpp +++ b/jni/main.cpp @@ -59,7 +59,7 @@ std::string hk_Common_getGameVersionString_hook() { // If the world hasn't loaded yet, print the usual version number(for the title screen) // else, return a blank string so the version watermark is absent in game. if(level_inst == NULL) { - return "v0.9.0 alpha build 7"; + return hk_Common_getGameVersionString_real(); } else { return " "; }