From 6dc5194895b6bd61d19bf5c95021471784084325 Mon Sep 17 00:00:00 2001 From: untodesu Date: Tue, 1 Jul 2025 03:23:05 +0500 Subject: I forgot to set these to true in .clang-format https://files.catbox.moe/909rig.gif --- game/client/game.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'game/client/game.cc') diff --git a/game/client/game.cc b/game/client/game.cc index 0418236..d5820f4 100644 --- a/game/client/game.cc +++ b/game/client/game.cc @@ -512,7 +512,8 @@ void client_game::update(void) if(session::is_ingame()) { if(toggles::get(TOGGLE_PM_FLIGHT)) { globals::dimension->entities.remove(globals::player); - } else { + } + else { globals::dimension->entities.emplace_or_replace(globals::player); } } @@ -574,7 +575,8 @@ void client_game::update_late(void) if(client_game::vertical_sync.get_value()) { glfwSwapInterval(1); - } else { + } + else { glfwSwapInterval(0); } } -- cgit