summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaryOderNichts <12049776+GaryOderNichts@users.noreply.github.com>2022-07-27 23:50:56 +0200
committerGitHub <noreply@github.com>2022-07-27 23:50:56 +0200
commit5b2404e710cdf91f2df2176896f9c25bbb26f8fa (patch)
tree9bc9cecccb66859cc59964ea98e0381afdc06507
parent2b0cfc788cac9c373b3653aad89dbef0802b49ca (diff)
Big-endian support (#909)
-rw-r--r--OTRExporter/Exporter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/OTRExporter/Exporter.cpp b/OTRExporter/Exporter.cpp
index b8b0612..f2daa42 100644
--- a/OTRExporter/Exporter.cpp
+++ b/OTRExporter/Exporter.cpp
@@ -3,7 +3,7 @@
void OTRExporter::WriteHeader(ZResource* res, const fs::path& outPath, BinaryWriter* writer, Ship::ResourceType resType, Ship::Version resVersion)
{
- writer->Write((uint8_t)Endianess::Little); // 0x00
+ writer->Write((uint8_t)Endianness::Little); // 0x00
writer->Write((uint8_t)0); // 0x01
writer->Write((uint8_t)0); // 0x02
writer->Write((uint8_t)0); // 0x03