summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederico Linhares <fred@linhares.blue>2024-12-30 22:14:39 -0300
committerFrederico Linhares <fred@linhares.blue>2024-12-30 22:14:39 -0300
commit7f9cef62d446f0d82d8801185a38035cc2e5bc08 (patch)
treecfb012695f070fa3f855b9722988929354591785
parent4a1c10205ff009afa89ce22ae84862620bb9babc (diff)
feat Rename version constants for BluCat
-rw-r--r--src/blucat/core.hpp4
-rw-r--r--src/core.cpp8
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;