summaryrefslogtreecommitdiff
path: root/src/factories/DisplayListFactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/factories/DisplayListFactory.cpp')
-rw-r--r--src/factories/DisplayListFactory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/factories/DisplayListFactory.cpp b/src/factories/DisplayListFactory.cpp
index 8d67392..b5d71dd 100644
--- a/src/factories/DisplayListFactory.cpp
+++ b/src/factories/DisplayListFactory.cpp
@@ -303,8 +303,8 @@ std::optional<std::shared_ptr<IParsedData>> DListFactory::parse(std::vector<uint
auto processing = true;
while (processing){
- auto w0 = BSWAP32(reader.ReadUInt32());
- auto w1 = BSWAP32(reader.ReadUInt32());
+ auto w0 = reader.ReadUInt32();
+ auto w1 = reader.ReadUInt32();
uint8_t opcode = w0 >> 24;