From 3d91f1c0358c46e81ac826fbb8cf716904d5a566 Mon Sep 17 00:00:00 2001 From: quaK <38787176+Joelrau@users.noreply.github.com> Date: Wed, 18 May 2022 14:37:00 +0300 Subject: [PATCH] Update console.hpp --- src/client/component/console.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/component/console.hpp b/src/client/component/console.hpp index 8dcf5fab..4101a3a6 100644 --- a/src/client/component/console.hpp +++ b/src/client/component/console.hpp @@ -9,7 +9,7 @@ namespace console enum console_type { con_type_error = 1, - con_type_dev = 2, + con_type_debug = 2, con_type_warning = 3, con_type_info = 7 }; @@ -26,7 +26,7 @@ namespace console void debug(const char* fmt, Args&&... args) { #ifdef DEBUG - print(2, fmt, std::forward(args)...); + print(con_type_debug, fmt, std::forward(args)...); #endif }