diff options
| author | briaguya <70942617+briaguya0@users.noreply.github.com> | 2025-10-09 09:31:39 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-09 09:31:39 -0400 |
| commit | 32e088e28c8cdd055d4bb8f3f219d33ad37963f3 (patch) | |
| tree | 25f350c37d418a73dd4e8ca7ecfaf49394439a4b | |
| parent | 33f20ca367dc036291df9cb9a9304c542deb66f9 (diff) | |
update to work with lus header structure (#44)
| -rw-r--r-- | OTRExporter/DisplayListExporter.cpp | 2 | ||||
| -rw-r--r-- | OTRExporter/ExporterArchive.cpp | 2 | ||||
| -rw-r--r-- | OTRExporter/ExporterArchiveO2R.cpp | 2 | ||||
| -rw-r--r-- | OTRExporter/ExporterArchiveOTR.cpp | 2 | ||||
| -rw-r--r-- | OTRExporter/VersionInfo.h | 3 |
5 files changed, 6 insertions, 5 deletions
diff --git a/OTRExporter/DisplayListExporter.cpp b/OTRExporter/DisplayListExporter.cpp index 0187718..f7bcf41 100644 --- a/OTRExporter/DisplayListExporter.cpp +++ b/OTRExporter/DisplayListExporter.cpp @@ -4,7 +4,7 @@ #include "../ZAPD/ZFile.h" #include <Utils/MemoryStream.h> #include <Utils/BitConverter.h> -#include <utils/StrHash64.h> +#include <ship/utils/StrHash64.h> #include "spdlog/spdlog.h" #include <libultraship/libultra/gbi.h> #include <Globals.h> diff --git a/OTRExporter/ExporterArchive.cpp b/OTRExporter/ExporterArchive.cpp index 4fdb419..50f3997 100644 --- a/OTRExporter/ExporterArchive.cpp +++ b/OTRExporter/ExporterArchive.cpp @@ -1,6 +1,6 @@ #include "ExporterArchive.h" #include "Utils/StringHelper.h" -#include <utils/StrHash64.h> +#include <ship/utils/StrHash64.h> #include <filesystem> ExporterArchive::ExporterArchive(const std::string& path, bool enableWriting) : mPath(path) { diff --git a/OTRExporter/ExporterArchiveO2R.cpp b/OTRExporter/ExporterArchiveO2R.cpp index 05fb981..aca45e4 100644 --- a/OTRExporter/ExporterArchiveO2R.cpp +++ b/OTRExporter/ExporterArchiveO2R.cpp @@ -1,6 +1,6 @@ #include "ExporterArchiveO2R.h" #include "Utils/StringHelper.h" -#include <utils/StrHash64.h> +#include <ship/utils/StrHash64.h> #include <filesystem> #include <spdlog/spdlog.h> diff --git a/OTRExporter/ExporterArchiveOTR.cpp b/OTRExporter/ExporterArchiveOTR.cpp index 79b87a6..1aff41a 100644 --- a/OTRExporter/ExporterArchiveOTR.cpp +++ b/OTRExporter/ExporterArchiveOTR.cpp @@ -1,7 +1,7 @@ #ifdef INCLUDE_MPQ_SUPPORT #include "ExporterArchiveOTR.h" #include "Utils/StringHelper.h" -#include <utils/StrHash64.h> +#include <ship/utils/StrHash64.h> #include <filesystem> ExporterArchiveOtr::ExporterArchiveOtr(const std::string& path, bool enableWriting) { diff --git a/OTRExporter/VersionInfo.h b/OTRExporter/VersionInfo.h index a58ce1c..51515d4 100644 --- a/OTRExporter/VersionInfo.h +++ b/OTRExporter/VersionInfo.h @@ -2,6 +2,7 @@ #include <map> #include <vector> -#include "src/resource/Resource.h" +#include <ship/resource/Resource.h> +#include <fast/resource/ResourceType.h> extern std::map<uint32_t, uint32_t> resourceVersions; |
