aboutsummaryrefslogtreecommitdiff
path: root/src/charselect.cpp
diff options
context:
space:
mode:
authoroldmud0 <oldmud0@users.noreply.github.com>2021-01-06 11:43:31 -0600
committerGitHub <noreply@github.com>2021-01-06 11:43:31 -0600
commitc4b739292a217bb6a844d3ef4e89b656ab3f2d4b (patch)
tree258da0131ac2e625038ed2116bd8da8d424c4f42 /src/charselect.cpp
parent714f54b9dccf1efbdd524e17b2dd4f4deefc8a01 (diff)
Use call_error() for character load error message
Diffstat (limited to 'src/charselect.cpp')
-rw-r--r--src/charselect.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charselect.cpp b/src/charselect.cpp
index 8e0aab5e..73560899 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;
}
}