Files
Shipwright/soh/soh/Enhancements/debugger/SohGfxDebuggerWindow.cpp
T
Malkierian 5e399fe7a2 Race Lockout (#5364)
* Implement race lockout on the new menu, with option for opt-out.

* Cal's requests.
2025-04-13 19:29:29 -04:00

19 lines
502 B
C++

#include "SohGfxDebuggerWindow.h"
#include "soh/OTRGlobals.h"
void SohGfxDebuggerWindow::InitElement() {
GfxDebuggerWindow::InitElement();
}
void SohGfxDebuggerWindow::UpdateElement() {
GfxDebuggerWindow::UpdateElement();
}
void SohGfxDebuggerWindow::DrawElement() {
ImGui::BeginDisabled(CVarGetInteger(CVAR_SETTING("DisableChanges"), 0));
ImGui::PushFont(OTRGlobals::Instance->fontMonoLarger);
GfxDebuggerWindow::DrawElement();
ImGui::PopFont();
ImGui::EndDisabled();
}