Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jni/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 " ";
}
Expand Down