mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-02-17 12:47:46 +00:00
Increase the min size of an "interesting" func.
Seeing a bunch of forwarders and stuff that won't hash safely.
This commit is contained in:
parent
438361d0bc
commit
9bb03072e6
@ -507,7 +507,7 @@ namespace MIPSAnalyst {
|
||||
for (auto it = functions.begin(), end = functions.end(); it != end; ++it) {
|
||||
const AnalyzedFunction &f = *it;
|
||||
// Small functions aren't very interesting.
|
||||
if (!f.hasHash || f.size < 12) {
|
||||
if (!f.hasHash || f.size <= 16) {
|
||||
continue;
|
||||
}
|
||||
// Functions with default names aren't very interesting either.
|
||||
|
Loading…
x
Reference in New Issue
Block a user