From 7f9cef62d446f0d82d8801185a38035cc2e5bc08 Mon Sep 17 00:00:00 2001 From: Frederico Linhares Date: Mon, 30 Dec 2024 22:14:39 -0300 Subject: feat Rename version constants for BluCat --- src/blucat/core.hpp | 4 ++++ 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 #include #include 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; -- cgit v1.2.3