mirror of
https://github.com/HarbourMasters/Shipwright
synced 2026-06-06 11:57:23 -04:00
5e399fe7a2
* Implement race lockout on the new menu, with option for opt-out. * Cal's requests.
19 lines
502 B
C++
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();
|
|
}
|