From dbf70ec83792cf3ba5e9a5c27c8c7b4babc670d9 Mon Sep 17 00:00:00 2001 From: Bardur Arantsson Date: Mon, 11 Jan 2010 07:53:03 +0100 Subject: Fix LUA errors when hitting escape to cancel choosing a spell. Since get_school_spell returns -1 when no spell is chosen, it must return s32b rather than u32b. Thanks to Noel Maddy for this fix. --- src/cmd5.c | 4 ++-- src/externs.h | 2 +- src/spells.pkg | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/cmd5.c b/src/cmd5.c index 0e683486..eef65a68 100644 --- a/src/cmd5.c +++ b/src/cmd5.c @@ -2172,10 +2172,10 @@ bool get_item_hook_find_spell(int *item) /* * Get a spell from a book */ -u32b get_school_spell(cptr do_what, cptr check_fct, s16b force_book) +s32b get_school_spell(cptr do_what, cptr check_fct, s16b force_book) { int i, item; - u32b spell = -1; + s32b spell = -1; int num = 0; s32b where = 1; int ask; diff --git a/src/externs.h b/src/externs.h index 68e44bbe..1777cf34 100644 --- a/src/externs.h +++ b/src/externs.h @@ -822,7 +822,7 @@ extern void do_poly_self(void); extern void brand_weapon(int brand_type); extern cptr symbiote_name(bool capitalize); extern int use_symbiotic_power(int r_idx, bool great, bool only_number, bool no_cost); -extern u32b get_school_spell(cptr do_what, cptr check_fct, s16b force_book); +extern s32b get_school_spell(cptr do_what, cptr check_fct, s16b force_book); extern void do_cmd_copy_spell(void); extern void cast_school_spell(void); extern void browse_school_spell(int book, int pval, object_type *o_ptr); diff --git a/src/spells.pkg b/src/spells.pkg index 65081aff..d1f50566 100644 --- a/src/spells.pkg +++ b/src/spells.pkg @@ -2462,7 +2462,7 @@ extern s32b lua_spell_device_chance(s32b chance, int level, int base_level); * If no spell is chosen, -1 is returned. * @note (see file cmd5.c) */ -extern u32b get_school_spell(cptr do_what, cptr check_fct, s16b force_book); +extern s32b get_school_spell(cptr do_what, cptr check_fct, s16b force_book); /** @name Last Teleportation * @brief Coordinates of last successful teleportation -- cgit v1.2.3