X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fmain.h;h=1ade736826d9ce196a5be682403996ddf94351cc;hb=ea9dd0ae82153bf07b6c0fe2927548afea57e833;hp=f3670b24324fb9286dccb9adc2697560ff1f9a75;hpb=c72ed6261224cc0a1b8aa72f6af966715970ff60;p=plomrogue diff --git a/src/main.h b/src/main.h index f3670b2..1ade736 100644 --- a/src/main.h +++ b/src/main.h @@ -10,7 +10,6 @@ #include "keybindings.h" /* for KeyBiData struct */ struct WinMeta; struct WinConf; -struct Win; struct Map; struct MapObjDef; struct MapObj; @@ -37,7 +36,7 @@ struct World uint8_t map_obj_count; /* Counts map objects generated so far. */ struct MapObjDef * map_obj_defs; /* Map object type definitions chain. */ struct MapObj * map_objs; /* Pointer to map objects chain start. */ - uint8_t inventory_select; /* Player's inventory selection index. */ + uint8_t inventory_sel; /* Player's inventory selection index. */ struct MapObjAct * map_obj_acts; /* Pointer to map object actions chain. */ } world;