X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;f=src%2Fmisc.h;h=39efe6ac0ef64032b78a82b14889810e34862e2d;hb=bed76e36029b889501cf45e6852830fbfa35ea11;hp=1c1a74903618348ed8c94bdfb0bfdacef2f68715;hpb=7bebc9943d1648d56968146b17c9459affb183c6;p=plomrogue diff --git a/src/misc.h b/src/misc.h index 1c1a749..39efe6a 100644 --- a/src/misc.h +++ b/src/misc.h @@ -9,7 +9,7 @@ -#include /* for uint16_t, uint32_t */ +#include /* for uint8_t, uint16_t, uint32_t */ #include /* for FILE typedef */ #include "yx_uint16.h" /* for yx_uint16 coordinates */ struct World; @@ -85,11 +85,9 @@ extern struct yx_uint16 find_passable_pos(struct Map * map); /* Call some meta game / window management actions dependent on key. If the * "quit" action is called, return 1 only instead of doing anything directly. */ -extern unsigned char meta_keys(int key, struct World * world, - struct WinMeta * win_meta, - struct Win * win_keys, - struct Win * win_map, - struct Win * win_info, +extern uint8_t meta_keys(int key, struct World * world, + struct WinMeta * win_meta, struct Win * win_keys, + struct Win * win_map, struct Win * win_info, struct Win * win_log);