From 58a2dbb2fbcd9eff3b1a5b5957b4dcc491200442 Mon Sep 17 00:00:00 2001 From: KeybadeBlox Date: Wed, 10 Dec 2025 22:43:42 -0500 Subject: [PATCH] Consistent capitalization The release binary was called Jet2.exe (according to the XBE header), so they were apparently capitalizing file names. This was already reflected in objects.csv, but not the source files. --- src/Core.cpp | 1 + src/{core.hpp => Core.hpp} | 0 src/{jet2.cpp => Jet2.cpp} | 2 +- src/{mmatrix.cpp => MMatrix.cpp} | 0 src/core.cpp | 1 - 5 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 src/Core.cpp rename src/{core.hpp => Core.hpp} (100%) rename src/{jet2.cpp => Jet2.cpp} (91%) rename src/{mmatrix.cpp => MMatrix.cpp} (100%) delete mode 100644 src/core.cpp diff --git a/src/Core.cpp b/src/Core.cpp new file mode 100644 index 0000000..fe52231 --- /dev/null +++ b/src/Core.cpp @@ -0,0 +1 @@ +#include "Core.hpp" diff --git a/src/core.hpp b/src/Core.hpp similarity index 100% rename from src/core.hpp rename to src/Core.hpp diff --git a/src/jet2.cpp b/src/Jet2.cpp similarity index 91% rename from src/jet2.cpp rename to src/Jet2.cpp index 066b094..d33805e 100644 --- a/src/jet2.cpp +++ b/src/Jet2.cpp @@ -1,4 +1,4 @@ -#include "core.hpp" +#include "Core.hpp" // Address: 0x0022FCE0 diff --git a/src/mmatrix.cpp b/src/MMatrix.cpp similarity index 100% rename from src/mmatrix.cpp rename to src/MMatrix.cpp diff --git a/src/core.cpp b/src/core.cpp deleted file mode 100644 index 1ecc69a..0000000 --- a/src/core.cpp +++ /dev/null @@ -1 +0,0 @@ -#include "core.hpp"