Change: not performing a command is worthy of an error, not a warning

If a command cannot be executed for whatever reason, it makes no sense to call it a warning. Something has been done wrong.
Also make writing of these error message consistent while changing their "type".
This commit is contained in:
rubidium42
2021-06-12 20:55:56 +02:00
committed by rubidium42
parent 121b037054
commit de49727ae8
3 changed files with 29 additions and 29 deletions

View File

@@ -1076,6 +1076,6 @@ void ConPrintFramerate()
}
if (!printed_anything) {
IConsoleWarning("No performance measurements have been taken yet");
IConsolePrint(CC_ERROR, "No performance measurements have been taken yet.");
}
}