mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 15:01:28 +12:00
rsx-debugger: auto jump into get address on startup
This commit is contained in:
parent
fb30c8a937
commit
68a8efdc33
1 changed files with 8 additions and 0 deletions
|
@ -120,6 +120,14 @@ rsx_debugger::rsx_debugger(std::shared_ptr<gui_settings> gui_settings, QWidget*
|
||||||
return table;
|
return table;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if (const auto render = rsx::get_current_renderer())
|
||||||
|
{
|
||||||
|
if (RSXIOMem.RealAddr(render->ctrl->get.load()))
|
||||||
|
{
|
||||||
|
m_addr = render->ctrl->get.load();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
m_list_commands = l_addRSXTab(m_list_commands, tr("RSX Commands"), 4);
|
m_list_commands = l_addRSXTab(m_list_commands, tr("RSX Commands"), 4);
|
||||||
m_list_captured_frame = l_addRSXTab(m_list_captured_frame, tr("Captured Frame"), 1);
|
m_list_captured_frame = l_addRSXTab(m_list_captured_frame, tr("Captured Frame"), 1);
|
||||||
m_list_captured_draw_calls = l_addRSXTab(m_list_captured_draw_calls, tr("Captured Draw Calls"), 1);
|
m_list_captured_draw_calls = l_addRSXTab(m_list_captured_draw_calls, tr("Captured Draw Calls"), 1);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue