diff options
| author | inspectredc <inspectredc@gmail.com> | 2024-11-27 20:53:14 +0000 |
|---|---|---|
| committer | Lywx <kiritodev01@gmail.com> | 2024-12-01 15:59:23 -0600 |
| commit | 4bbd836d63937317b0164d3efb82c2d18be7a808 (patch) | |
| tree | dbcb27b82798a97b5124c48dbc29601beacba316 /src/Companion.cpp | |
| parent | e466f58b2cff026c37201154cc74096b1f7ac0ce (diff) | |
Pad Warning Fix
Diffstat (limited to 'src/Companion.cpp')
| -rw-r--r-- | src/Companion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Companion.cpp b/src/Companion.cpp index 0589c84..7461dc6 100644 --- a/src/Companion.cpp +++ b/src/Companion.cpp @@ -906,7 +906,7 @@ void Companion::ProcessFile(YAML::Node root) { } else { stream << "\n"; } - } else if(gap > 0x10) { + } else if(gap >= 0x10) { stream << "// WARNING: Gap detected between 0x" << std::hex << startptr << " and 0x" << end << " with size 0x" << gap << "\n"; } } |
