From 040d9a43367f4e2a3aa57ddb47c41d5d13b5b39e Mon Sep 17 00:00:00 2001 From: TryTwo Date: Mon, 19 May 2025 23:13:00 -0700 Subject: Debugger symbols: Add new symbol type: Notes.. Notes are for naming single instructions, or small groups of instructions. Notes are separate from function symbols, and can be searched separately. Unlike functions, notes of different length can overlap each other. In the instruction window, a note will always display over the function symbol. --- Source/Core/Common/SymbolDB.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'Source/Core/Common/SymbolDB.cpp') diff --git a/Source/Core/Common/SymbolDB.cpp b/Source/Core/Common/SymbolDB.cpp index f9d352b415..bfdd9f57db 100644 --- a/Source/Core/Common/SymbolDB.cpp +++ b/Source/Core/Common/SymbolDB.cpp @@ -51,6 +51,7 @@ void SymbolDB::Clear(const char* prefix) { // TODO: honor prefix m_functions.clear(); + m_notes.clear(); m_checksum_to_function.clear(); } -- cgit v1.2.3