diff options
Diffstat (limited to 'src/factories')
| -rw-r--r-- | src/factories/DisplayListFactory.cpp | 4 |
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; |
