Skip to content

Commit

Permalink
Fix Application::MakeEngineVersion
Browse files Browse the repository at this point in the history
  • Loading branch information
Lactozilla committed Dec 14, 2023
1 parent f769ed1 commit f2e187c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/Engine/Application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ PRIVATE STATIC void Application::MakeEngineVersion() {

#ifdef VERSION_PATCH
versionText += ".";
versionText += std::to_string(VERSION_MINOR);
versionText += std::to_string(VERSION_PATCH);
#endif

#ifdef VERSION_PRERELEASE
Expand Down

0 comments on commit f2e187c

Please sign in to comment.