diff options
| author | KiritoDv <kiritodev01@gmail.com> | 2024-04-02 09:21:41 -0600 |
|---|---|---|
| committer | KiritoDv <kiritodev01@gmail.com> | 2024-04-02 09:21:41 -0600 |
| commit | 0d9caaf591a793d246e3583da6b88107a5083aa2 (patch) | |
| tree | 752c10648606a91743feb642ce12588b7f343192 | |
| parent | b90af0cb29d7047b3c815ccf2d2cc1d85ead6380 (diff) | |
Removed unnecesary bswapbswapped
| -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; |
