home · contact · privacy
Not very elegant solution to bug of appropriate inventory selection not being saved...
[plomrogue] / src / main.h
index 56d458ba4c0e933174f6b4d9bab76182c60e488a..8105d3421933bf0889565003ae147988d6559a55 100644 (file)
@@ -37,7 +37,9 @@ 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 old_inventory_select;     /* Temporarily stores for recordfile */
+};                                    /* writing inventory selection index. */