summaryrefslogtreecommitdiff
path: root/src/n64/Cartridge.cpp
diff options
context:
space:
mode:
authorKiritoDv <kiritodev01@gmail.com>2024-05-25 16:31:32 -0600
committerKiritoDv <kiritodev01@gmail.com>2024-05-25 16:31:32 -0600
commitafd800afc0bad0dd034eb732354ed25c81621d2e (patch)
tree80c18965e4837af9089f73ff11f8affa36351fde /src/n64/Cartridge.cpp
parent1b06b44e67ec8f63af3cdcecdabf402405ff9493 (diff)
Fixed possible conflicts with LUS
Diffstat (limited to 'src/n64/Cartridge.cpp')
-rw-r--r--src/n64/Cartridge.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/n64/Cartridge.cpp b/src/n64/Cartridge.cpp
index f725f86..3580d11 100644
--- a/src/n64/Cartridge.cpp
+++ b/src/n64/Cartridge.cpp
@@ -5,7 +5,7 @@
void N64::Cartridge::Initialize() {
LUS::BinaryReader reader((char*) this->gRomData.data(), this->gRomData.size());
- reader.SetEndianness(LUS::Endianness::Big);
+ reader.SetEndianness(Torch::Endianness::Big);
reader.Seek(0x10, LUS::SeekOffsetType::Start);
this->gRomCRC = BSWAP32(reader.ReadUInt32());
reader.Seek(0x20, LUS::SeekOffsetType::Start);