We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc1d5a8 commit 5b07b12Copy full SHA for 5b07b12
src/WaterDropEngine/WdeCommon/WdeUtils/Config.cpp
@@ -5,7 +5,7 @@ namespace wde::Config {
5
/** Application name */
6
std::string APPLICATION_NAME = "WaterDropEngine";
7
/** Application version */
8
- std::vector APPLICATION_VERSION_RAW {2, 0, 0}; // In order major, minor, patch
+ std::vector APPLICATION_VERSION_RAW {1, 0, 0}; // In order major, minor, patch
9
uint32_t APPLICATION_VERSION = VK_MAKE_VERSION(APPLICATION_VERSION_RAW[0], APPLICATION_VERSION_RAW[1], APPLICATION_VERSION_RAW[2]);
10
std::string APPLICATION_VERSION_FORMATTED = "v" + std::to_string(APPLICATION_VERSION_RAW[0]) + "."
11
+ std::to_string(APPLICATION_VERSION_RAW[1]) + "." + std::to_string(APPLICATION_VERSION_RAW[2]);
0 commit comments