From 137f29509fbf928cf24fa8669ffaf9137ccab6b1 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Thu, 31 Aug 2023 22:48:35 +0300 Subject: [PATCH] Add warning --- src/core/kernel/timers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/kernel/timers.cpp b/src/core/kernel/timers.cpp index 1f5fefaf..1c18d9de 100644 --- a/src/core/kernel/timers.cpp +++ b/src/core/kernel/timers.cpp @@ -60,7 +60,7 @@ void Kernel::svcCreateTimer() { } // Have a warning here until our timers don't suck - Helpers::warn("Called Kernel::CreateTimer"); + Helpers::warn("Called Kernel::CreateTimer. Timers are currently not updated nor triggered properly!"); logSVC("CreateTimer (resetType = %s)\n", resetTypeToString(resetType)); regs[0] = Result::Success;