diff --git a/src/Client/Systems/Menus/Menu/MenuSystems.cpp b/src/Client/Systems/Menus/Menu/MenuSystems.cpp index 62869d43..781702fc 100644 --- a/src/Client/Systems/Menus/Menu/MenuSystems.cpp +++ b/src/Client/Systems/Menus/Menu/MenuSystems.cpp @@ -114,7 +114,8 @@ namespace Systems { {typeid(Types::InputBox), typeid(Raylib::Text)}); static auto clockId = Registry::getInstance().getClock().create(); - if (Raylib::isKeyDown(Raylib::KeyboardKey::KB_BACKSPACE) && Registry::getInstance().getClock().elapsedMillisecondsSince(clockId) > delay) { + if (Raylib::isKeyDown(Raylib::KeyboardKey::KB_BACKSPACE) + && Registry::getInstance().getClock().elapsedMillisecondsSince(clockId) > delay) { for (auto id : ids) { if (arrInputBox[id].selected) { Registry::getInstance().getClock().restart(clockId);