diff options
| author | Anthony <Helios747@users.noreply.github.com> | 2017-03-25 19:38:16 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-25 19:38:16 -0700 |
| commit | fbfb94ec7953f0b7fdbed45f60d7ffd7ee004e36 (patch) | |
| tree | 789bdc5701f3e71601a99881c829f9480714a897 /Source/Core | |
| parent | 5d40daa507dec8d39896954b11165e78ec84630c (diff) | |
| parent | 6eca6052849f4f2b4f56829f44025ce62853b7c3 (diff) | |
Merge pull request #5157 from sepalani/sym-name
Fix wrong address in zz_ symbol name
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/PowerPC/PPCAnalyst.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/PowerPC/PPCAnalyst.cpp b/Source/Core/Core/PowerPC/PPCAnalyst.cpp index 18059abf33..4399bc445f 100644 --- a/Source/Core/Core/PowerPC/PPCAnalyst.cpp +++ b/Source/Core/Core/PowerPC/PPCAnalyst.cpp @@ -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. |
