summaryrefslogtreecommitdiff
path: root/src/n64/Cartridge.cpp
diff options
context:
space:
mode:
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);