diff options
| author | inspectredc <inspectredc@gmail.com> | 2024-12-31 00:19:38 +0000 |
|---|---|---|
| committer | Lywx <kiritodev01@gmail.com> | 2024-12-30 19:53:17 -0600 |
| commit | 9b983c0f829b80db9b2ff4d73f1cd8048b668e1b (patch) | |
| tree | c94716103419466349a6b747abc0fe3a816e6336 /src/preprocess | |
| parent | c5e1b1e7748d3ecb78c3913b5acec8afc6f10d8b (diff) | |
Remove stdexcept
Diffstat (limited to 'src/preprocess')
| -rw-r--r-- | src/preprocess/CompTool.cpp | 1 | ||||
| -rw-r--r-- | src/preprocess/CompTool.h | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/preprocess/CompTool.cpp b/src/preprocess/CompTool.cpp index d310e35..a289137 100644 --- a/src/preprocess/CompTool.cpp +++ b/src/preprocess/CompTool.cpp @@ -4,7 +4,6 @@ #include "lib/binarytools/BinaryReader.h" #include <fstream> #include <cstring> -#include <stdexcept> uint32_t CompTool::FindFileTable(std::vector<uint8_t>& rom) { uint8_t query_one[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x50, 0x00, 0x00, 0x00, 0x00 }; diff --git a/src/preprocess/CompTool.h b/src/preprocess/CompTool.h index 73052bb..a995480 100644 --- a/src/preprocess/CompTool.h +++ b/src/preprocess/CompTool.h @@ -18,4 +18,4 @@ private: static uint32_t FindFileTable(std::vector<uint8_t>& rom); static std::pair<uint32_t, uint32_t> CalculateCRCs(LUS::BinaryWriter& decompFile); static inline const uint32_t sCrcSeed = 0xF8CA4DDC; -};
\ No newline at end of file +}; |
