Skip to content
Permalink
Browse files
Merge pull request #6054 from gamemasterplc/master
Remove Symbol Address Mask
  • Loading branch information
leoetlino committed Sep 11, 2017
2 parents b0f93f2 + 4908d79 commit 36aafd9
Showing 1 changed file with 1 addition and 1 deletion.
@@ -86,7 +86,7 @@ static u32 EvaluateBranchTarget(UGeckoInstruction instr, u32 pc)
bool AnalyzeFunction(u32 startAddr, Symbol& func, int max_size)
{
if (func.name.empty())
func.Rename(StringFromFormat("zz_%07x_", startAddr & 0x0FFFFFFF));
func.Rename(StringFromFormat("zz_%08x_", startAddr));
if (func.analyzed)
return true; // No error, just already did it.

0 comments on commit 36aafd9

Please sign in to comment.