diff options
-rw-r--r-- | src/blucat/core.hpp | 4 | ||||
-rw-r--r-- | src/core.cpp | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/src/blucat/core.hpp b/src/blucat/core.hpp index c1924b9..decf319 100644 --- a/src/blucat/core.hpp +++ b/src/blucat/core.hpp @@ -17,6 +17,10 @@ #ifndef CANDY_GEAR_BLUCAT_CORE_H #define CANDY_GEAR_BLUCAT_CORE_H 1 +#define BLU_CAT_VERSION_MAJOR 0 +#define BLU_CAT_VERSION_MINOR 1 +#define BLU_CAT_VERSION_PATCH 0 + #include <chrono> #include <cstdint> #include <memory> diff --git a/src/core.cpp b/src/core.cpp index 7e5253b..dd68edb 100644 --- a/src/core.cpp +++ b/src/core.cpp @@ -288,11 +288,11 @@ load_vk_instance(void *obj) BluCat::core.game_version_major, BluCat::core.game_version_minor, BluCat::core.game_version_patch); - app_info.pEngineName = "CandyGear"; + app_info.pEngineName = "BluCat"; app_info.engineVersion = VK_MAKE_VERSION( - CANDY_GEAR_VERSION_MAJOR, - CANDY_GEAR_VERSION_MINOR, - CANDY_GEAR_VERSION_PATCH); + BLU_CAT_VERSION_MAJOR, + BLU_CAT_VERSION_MINOR, + BLU_CAT_VERSION_PATCH); app_info.apiVersion = VK_API_VERSION_1_0; VkInstanceCreateInfo create_info; |