summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-10-26 19:13:58 +0200
committerStanislaw Halik <sthalik@misaki.pl>2022-10-26 19:13:58 +0200
commit7c00580fa9c5a26f051439b6801c0122d23949a2 (patch)
tree98127a70b2f7361b132c17666def70252076123f
parentabf5ca8b34062b72db3ecf2c97177a9c1dc559a8 (diff)
fix typo
-rw-r--r--main/debug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/debug.cpp b/main/debug.cpp
index 70752832..e5b3c2cf 100644
--- a/main/debug.cpp
+++ b/main/debug.cpp
@@ -31,7 +31,7 @@ void main_impl::debug_callback(unsigned src, unsigned type, unsigned id, unsigne
switch (Severity{severity})
{
using enum GL::DebugOutput::Severity;
- case Notification: std::fputs("fm_debug ", stdout); break;
+ case Notification: std::fputs("DEBUG ", stdout); break;
case Low: std::fputs("INFO ", stdout); break;
case Medium: std::fputs("NOTICE ", stdout); break;
case High: std::fputs("ERROR ", stdout); break;