summaryrefslogtreecommitdiffstats
path: root/game/client/toggles.cc
diff options
context:
space:
mode:
Diffstat (limited to 'game/client/toggles.cc')
-rw-r--r--game/client/toggles.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/game/client/toggles.cc b/game/client/toggles.cc
index fff8f4d..f40d6ed 100644
--- a/game/client/toggles.cc
+++ b/game/client/toggles.cc
@@ -25,9 +25,9 @@ static void print_toggle_state(const ToggleInfo& info)
{
if(info.description) {
if(info.is_enabled) {
- client_chat::print(fmt::format("[toggles] {} ON", info.description));
+ client_chat::print(std::format("[toggles] {} ON", info.description));
} else {
- client_chat::print(fmt::format("[toggles] {} OFF", info.description));
+ client_chat::print(std::format("[toggles] {} OFF", info.description));
}
}
}