X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=misc.c;h=968e2a1840d5a6acc6c04a79c44bfcaf418a95ee;hb=017162da6eff656d1b77ba849fcbc8efe3667daf;hp=a0f6c36140ba169fc1d50ee8ce29fc0921306213;hpb=bb2b8e0fcad10cf896acd1bfd42267c40f4f21ea;p=open-adventure.git diff --git a/misc.c b/misc.c index a0f6c36..968e2a1 100644 --- a/misc.c +++ b/misc.c @@ -246,7 +246,7 @@ static char* get_input(void) return (input); } -bool silent_yes(void) +bool silent_yes_or_no(void) { bool outcome = false; @@ -295,7 +295,7 @@ bool silent_yes(void) } -bool yes(const char* question, const char* yes_response, const char* no_response) +bool yes_or_no(const char* question, const char* yes_response, const char* no_response) /* Print message X, wait for yes/no answer. If yes, print Y and return true; * if no, print Z and return false. */ { @@ -633,7 +633,7 @@ void carry(obj_t object, loc_t where) void drop(obj_t object, loc_t where) /* Place an object at a given loc, prefixing it onto the game.atloc list. Decr - * game.holdng if the object was being toted. */ + * game.holdng if the object was being toted. No state change on the object. */ { if (object > NOBJECTS) game.fixed[object - NOBJECTS] = where; @@ -728,8 +728,6 @@ void bug(enum bugtype num, const char *error_string) } // LCOV_EXCL_STOP -/* end */ - void state_change(obj_t obj, int state) /* Object must have a change-message list for this to be useful; only some do */ {