aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/dialogs_spells.h
diff options
context:
space:
mode:
authorPaul Gilbert2015-02-18 20:35:32 -0500
committerPaul Gilbert2015-02-18 20:35:32 -0500
commit0f78fb9373b8c4befd727e9e56faf5d30ac59cff (patch)
tree0f4a9a85f3497ff2e75501deca7f2cb324f9d1cc /engines/xeen/dialogs_spells.h
parent6a7fd1952d62ce0bf44a426aba061ecc85183168 (diff)
downloadscummvm-rg350-0f78fb9373b8c4befd727e9e56faf5d30ac59cff.tar.gz
scummvm-rg350-0f78fb9373b8c4befd727e9e56faf5d30ac59cff.tar.bz2
scummvm-rg350-0f78fb9373b8c4befd727e9e56faf5d30ac59cff.zip
XEEN: Implement extra code for passing active character to castSpell
Diffstat (limited to 'engines/xeen/dialogs_spells.h')
-rw-r--r--engines/xeen/dialogs_spells.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/xeen/dialogs_spells.h b/engines/xeen/dialogs_spells.h
index c27567cd5c..f091da66cf 100644
--- a/engines/xeen/dialogs_spells.h
+++ b/engines/xeen/dialogs_spells.h
@@ -64,12 +64,12 @@ private:
CastSpell(XeenEngine *vm) : ButtonContainer(), _vm(vm) {}
- int execute(Character *c, int mode);
+ int execute(Character *&c, int mode);
void loadButtons();
public:
static int show(XeenEngine *vm, int mode);
- static int show(XeenEngine *vm, Character *c, int mode);
+ static int show(XeenEngine *vm, Character *&c, int mode);
};
} // End of namespace Xeen