Merge pull request #13821 from AlexanderHarrison/codeview-update-timer

CodeViewWidget: Improve Update performance
This commit is contained in:
Jordan Woyak 2025-07-30 17:42:45 -05:00 committed by GitHub
commit 9224d2f827
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 2 deletions

View file

@ -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);

View file

@ -433,8 +433,6 @@ void CodeViewWidget::Update(const Core::CPUThreadGuard* guard)
CalculateBranchIndentation();
m_ppc_symbol_db.FillInCallers();
repaint();
m_updating = false;
}