Skip to content

Commit

Permalink
Pad Warning Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
inspectredc authored and KiritoDv committed Dec 1, 2024
1 parent e466f58 commit 4bbd836
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Companion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}
}
Expand Down

0 comments on commit 4bbd836

Please sign in to comment.