This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
YimMenu/BigBaseV2/src/gui/window/dbg/debug_debug.cpp

20 lines
338 B
C++

#include "debug_tabs.hpp"
#include "util/system.hpp"
namespace big
{
void tab_debug::_tab_debug()
{
if (ImGui::BeginTabItem("Debug"))
{
ImGui::Checkbox("Script Event Logging", &g->debug.script_event_logging);
if (ImGui::Button("Dump entrypoints"))
{
system::dump_entry_points();
}
ImGui::EndTabItem();
}
}
}