aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/town.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2015-02-18 08:11:57 -0500
committerPaul Gilbert2015-02-18 08:11:57 -0500
commit6a7fd1952d62ce0bf44a426aba061ecc85183168 (patch)
tree4fee0250fddca02a0bddf45ad58e5111461ee1d3 /engines/xeen/town.cpp
parent1d5d98e898cf132a102ef3b1953af31f53da79cc (diff)
downloadscummvm-rg350-6a7fd1952d62ce0bf44a426aba061ecc85183168.tar.gz
scummvm-rg350-6a7fd1952d62ce0bf44a426aba061ecc85183168.tar.bz2
scummvm-rg350-6a7fd1952d62ce0bf44a426aba061ecc85183168.zip
XEEN: Fixes for display of Spells dialog
Diffstat (limited to 'engines/xeen/town.cpp')
-rw-r--r--engines/xeen/town.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/xeen/town.cpp b/engines/xeen/town.cpp
index f68a554b5f..b850439021 100644
--- a/engines/xeen/town.cpp
+++ b/engines/xeen/town.cpp
@@ -567,12 +567,12 @@ Character *Town::doGuildOptions(Character *c) {
}
} else if (_buttonValue == Common::KEYCODE_s) {
if (c->guildMember())
- c = SpellsScroll::show(_vm, c, 0x80);
+ c = SpellsDialog::show(_vm, c, 0x80);
_buttonValue = 0;
} else if (_buttonValue == Common::KEYCODE_c) {
if (!c->noActions()) {
if (c->guildMember())
- c = SpellsScroll::show(_vm, c, 0);
+ c = SpellsDialog::show(_vm, c, 0);
_buttonValue = 0;
}
}