Dutchman Bravo (#106)

* 1.0.1

* clang
This commit is contained in:
Malkierian
2026-01-20 16:38:36 -07:00
committed by GitHub
parent 8cffb77b75
commit 4d1ec3a2e3
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.16.0 FATAL_ERROR)
# Set the project version and language
project(Ghostship VERSION 1.0.0 LANGUAGES C CXX ASM)
project(Ghostship VERSION 1.0.1 LANGUAGES C CXX ASM)
include(FetchContent)
include(cmake/ghostship-cvars.cmake)
+3 -3
View File
@@ -38,9 +38,9 @@ struct GraphNodeEntry {
GraphNodeFunc function;
};
#define FUNC(f) \
GraphNodeEntry { \
#f, reinterpret_cast<GraphNodeFunc>(f) \
#define FUNC(f) \
GraphNodeEntry { \
#f, reinterpret_cast < GraphNodeFunc>(f) \
}
std::unordered_map<uint32_t, GraphNodeEntry> mUSFunctionTable = {