16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-21 04:39:18 +02:00

reformat: remove redundant parentheses

This commit is contained in:
jerrrrycho
2026-07-04 05:39:03 +02:00
parent cf9fb07800
commit 31f9ca0afc
9 changed files with 57 additions and 39 deletions

View File

@@ -10,7 +10,7 @@ void perfgraph_panel::render_contents() {
{
for (size_t i = 0; i < (size_t)TIMER_MAX; i++)
{
const bool is_selected = (current_timer == (timers_e)i);
const bool is_selected = current_timer == (timers_e)i;
if (ImGui::Selectable(timer_label[i].c_str(), is_selected))
current_timer = (timers_e)i;
if (is_selected)