Core: add locked state to watches

This commit is contained in:
iwubcode
2022-12-22 23:17:09 -06:00
parent 41c9d706cb
commit 8f3e8e4ca3
5 changed files with 14 additions and 0 deletions

View File

@@ -112,6 +112,11 @@ void PPCDebugInterface::UpdateWatchName(std::size_t index, std::string name)
return m_watches.UpdateWatchName(index, std::move(name));
}
void PPCDebugInterface::UpdateWatchLockedState(std::size_t index, bool locked)
{
return m_watches.UpdateWatchLockedState(index, locked);
}
void PPCDebugInterface::EnableWatch(std::size_t index)
{
m_watches.EnableWatch(index);