aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/locations.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2018-03-27 23:13:18 -0400
committerPaul Gilbert2018-03-28 20:49:44 -0400
commit8c86a18806d4afc5a28cbfa1eb9b499a5a9d0ff1 (patch)
tree5dd54919b7e6d82245b4caf29b06e30315690cc7 /engines/xeen/locations.cpp
parent4b0fc02ad08c86a7583fdbb5949d8f37a950259c (diff)
downloadscummvm-rg350-8c86a18806d4afc5a28cbfa1eb9b499a5a9d0ff1.tar.gz
scummvm-rg350-8c86a18806d4afc5a28cbfa1eb9b499a5a9d0ff1.tar.bz2
scummvm-rg350-8c86a18806d4afc5a28cbfa1eb9b499a5a9d0ff1.zip
XEEN: Fix missing message for when all Guild spells bought
Diffstat (limited to 'engines/xeen/locations.cpp')
-rw-r--r--engines/xeen/locations.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/xeen/locations.cpp b/engines/xeen/locations.cpp
index f1d5348f33..72362171be 100644
--- a/engines/xeen/locations.cpp
+++ b/engines/xeen/locations.cpp
@@ -1042,7 +1042,7 @@ Common::String TrainingLocation::createLocationText(Character &ch) {
} else if (ch._level._permanent >= _maxLevel) {
// At maximum level
_experienceToNextLevel = 1;
- msg = Common::String::format(Res.LEARNED_ALL, ch._name.c_str());
+ msg = Common::String::format(Res.TRAINING_LEARNED_ALL, ch._name.c_str());
} else {
// Eligble for level increase
uint cost = ch._level._permanent * ch._level._permanent * 10;