From c4b739292a217bb6a844d3ef4e89b656ab3f2d4b Mon Sep 17 00:00:00 2001 From: oldmud0 Date: Wed, 6 Jan 2021 11:43:31 -0600 Subject: [PATCH] Use call_error() for character load error message --- src/charselect.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/charselect.cpp b/src/charselect.cpp index 8e0aab5..7356089 100644 --- a/src/charselect.cpp +++ b/src/charselect.cpp @@ -131,7 +131,7 @@ void Courtroom::char_clicked(int n_char) qDebug() << "char_ini_path" << char_ini_path; if (!file_exists(char_ini_path)) { - call_notice("Could not find " + char_ini_path); + call_error("Could not find " + char_ini_path); return; } }