18 lines
261 B
C++
18 lines
261 B
C++
![]() |
#include "debug_tabs.hpp"
|
||
|
#include "util/system.hpp"
|
||
|
|
||
|
namespace big
|
||
|
{
|
||
|
void tab_debug::_tab_debug()
|
||
|
{
|
||
|
if (ImGui::BeginTabItem("Debug"))
|
||
|
{
|
||
|
if (ImGui::Button("Dump entrypoints"))
|
||
|
{
|
||
|
system::dump_entry_points();
|
||
|
}
|
||
|
|
||
|
ImGui::EndTabItem();
|
||
|
}
|
||
|
}
|
||
|
}
|