From 56f04b5406fb78859a62efff55cde361c2ac4451 Mon Sep 17 00:00:00 2001 From: Alex Harrison Date: Wed, 23 Jul 2025 12:58:52 -0600 Subject: [PATCH] PPCSymbolDB: Fill in callers after loading map files --- Source/Core/Core/PowerPC/PPCSymbolDB.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/Core/PowerPC/PPCSymbolDB.cpp b/Source/Core/Core/PowerPC/PPCSymbolDB.cpp index 02da35f94b..4bfe2abd3d 100644 --- a/Source/Core/Core/PowerPC/PPCSymbolDB.cpp +++ b/Source/Core/Core/PowerPC/PPCSymbolDB.cpp @@ -622,6 +622,7 @@ bool PPCSymbolDB::LoadMap(const Core::CPUThreadGuard& guard, std::string filenam Index(&new_functions); DetermineNoteLayers(&new_notes); + FillInCallers(); std::lock_guard lock(m_mutex); std::swap(m_functions, new_functions);