From 80a6a6de92c42c5f69b9f63b41c22d68dd07513e Mon Sep 17 00:00:00 2001 From: Malkierian Date: Tue, 20 Jan 2026 15:46:25 -0700 Subject: [PATCH 1/2] 1.0.1 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index daedcaa0f..5ab1334f5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) From 05ad1d40bd0a2582fb20fb943b9423cfd230aef2 Mon Sep 17 00:00:00 2001 From: Malkierian Date: Tue, 20 Jan 2026 16:15:27 -0700 Subject: [PATCH 2/2] clang --- src/port/game/GeoLayoutParser.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/port/game/GeoLayoutParser.cpp b/src/port/game/GeoLayoutParser.cpp index 9946f1afd..81076114e 100644 --- a/src/port/game/GeoLayoutParser.cpp +++ b/src/port/game/GeoLayoutParser.cpp @@ -38,9 +38,9 @@ struct GraphNodeEntry { GraphNodeFunc function; }; -#define FUNC(f) \ - GraphNodeEntry { \ - #f, reinterpret_cast(f) \ +#define FUNC(f) \ + GraphNodeEntry { \ +#f, reinterpret_cast < GraphNodeFunc>(f) \ } std::unordered_map mUSFunctionTable = {