mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Merge pull request #5157 from sepalani/sym-name
Fix wrong address in zz_ symbol name
This commit is contained in:
@ -76,7 +76,7 @@ static u32 EvaluateBranchTarget(UGeckoInstruction instr, u32 pc)
|
|||||||
bool AnalyzeFunction(u32 startAddr, Symbol& func, int max_size)
|
bool AnalyzeFunction(u32 startAddr, Symbol& func, int max_size)
|
||||||
{
|
{
|
||||||
if (!func.name.size())
|
if (!func.name.size())
|
||||||
func.name = StringFromFormat("zz_%07x_", startAddr & 0x0FFFFFF);
|
func.name = StringFromFormat("zz_%07x_", startAddr & 0x0FFFFFFF);
|
||||||
if (func.analyzed)
|
if (func.analyzed)
|
||||||
return true; // No error, just already did it.
|
return true; // No error, just already did it.
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user