From 24f4fb3841c9fd9d4c349c9945c283003fb4a9b8 Mon Sep 17 00:00:00 2001 From: illyum Date: Sun, 15 Sep 2024 04:37:03 -0600 Subject: [PATCH] chore(example): fix unicode issue (thanks chatgpt) --- examples/client/client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/client/client.cpp b/examples/client/client.cpp index f7aac50..f749abc 100644 --- a/examples/client/client.cpp +++ b/examples/client/client.cpp @@ -46,7 +46,7 @@ void ShowLogger() { // CORE logger is intended for internal engine or core-level logging // In most cases, you won't need to use CORE logging in game/application code, - // but it’s available for engine-level diagnostics if necessary + // but it's available for engine-level diagnostics if necessary CORE_LOG_TRACE("Initializing {} with age {}", module, age); // Logs a trace-level message, useful for very detailed information CORE_LOG_DEBUG("This is an example of a debug message"); // Logs a debug message, typically used for debugging purposes CORE_LOG_WARN("This is an example of a warn message"); // Logs a warning, indicating a non-critical issue that should be investigated