Skip to content

Commit 74b45f4

Browse files
committed
Hide ImGui tools by default
1 parent 4053210 commit 74b45f4

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

engine/render/r_main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1143,7 +1143,7 @@ void CVarCheckbox(char const* label, conVar_c* cvar) {
11431143
void r_renderer_c::EndFrame()
11441144
{
11451145
static bool showDemo = false;
1146-
static bool showMetrics = true;
1146+
static bool showMetrics = false;
11471147
if (debugImGui) {
11481148
if (ImGui::Begin("Debug Hub", &debugImGui)) {
11491149
if (ImGui::Button("Demo")) {

engine/render/r_main.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ class r_renderer_c: public r_IRenderer, public conCmdHandler_c {
167167
uint64_t savedFrames{};
168168

169169
bool elideFrames = false;
170-
bool debugImGui = true;
171-
bool debugLayers = true;
170+
bool debugImGui = false;
171+
bool debugLayers = false;
172172

173173
int takeScreenshot = 0;
174174
void DoScreenshot(image_c* i, const char* ext);

0 commit comments

Comments
 (0)