Skip to content

Commit 5b07b12

Browse files
committed
Updated engine version
1 parent cc1d5a8 commit 5b07b12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/WaterDropEngine/WdeCommon/WdeUtils/Config.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace wde::Config {
55
/** Application name */
66
std::string APPLICATION_NAME = "WaterDropEngine";
77
/** Application version */
8-
std::vector APPLICATION_VERSION_RAW {2, 0, 0}; // In order major, minor, patch
8+
std::vector APPLICATION_VERSION_RAW {1, 0, 0}; // In order major, minor, patch
99
uint32_t APPLICATION_VERSION = VK_MAKE_VERSION(APPLICATION_VERSION_RAW[0], APPLICATION_VERSION_RAW[1], APPLICATION_VERSION_RAW[2]);
1010
std::string APPLICATION_VERSION_FORMATTED = "v" + std::to_string(APPLICATION_VERSION_RAW[0]) + "."
1111
+ std::to_string(APPLICATION_VERSION_RAW[1]) + "." + std::to_string(APPLICATION_VERSION_RAW[2]);

0 commit comments

Comments
 (0)