Fix wrong address in zz_ symbol name

This commit is contained in:
Sepalani 2017-03-25 01:21:13 +00:00
parent c5cc781205
commit 6eca605284
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ static u32 EvaluateBranchTarget(UGeckoInstruction instr, u32 pc)
bool AnalyzeFunction(u32 startAddr, Symbol& func, int max_size)
{
if (!func.name.size())
func.name = StringFromFormat("zz_%07x_", startAddr & 0x0FFFFFF);
func.name = StringFromFormat("zz_%07x_", startAddr & 0x0FFFFFFF);
if (func.analyzed)
return true; // No error, just already did it.