Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.

Commit 5b07b12

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

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)