summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPheenoh <pheenoh@gmail.com>2021-01-03 03:35:54 -0500
committerPheenoh <pheenoh@gmail.com>2021-01-03 03:35:54 -0500
commit47c40cce41c4b44dacaaeb5589329bc2b015ee9e (patch)
treeb4e7664966e354faa9a9684e59619aff339f46bf /include
parent5abaebc40df02b65f791a16389a0c82590dbbda6 (diff)
dSv_info_c::isItem OK
Diffstat (limited to 'include')
-rw-r--r--include/d/d_save/d_save/d_save.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/d/d_save/d_save/d_save.h b/include/d/d_save/d_save/d_save.h
index f829b477b4..8701aa2aba 100644
--- a/include/d/d_save/d_save/d_save.h
+++ b/include/d/d_save/d_save/d_save.h
@@ -722,6 +722,7 @@ public:
dSv_memory_c(void); // the assembly for this is in d_com_inf_game.s
void init(void);
dSv_memBit_c& getTempFlags() { return temp_flags; }
+ const dSv_memBit_c& getTempFlagsConst() const { return temp_flags; }
private:
dSv_memBit_c temp_flags;
@@ -803,6 +804,7 @@ public:
dSv_zone_c(void); // the assembly for this is in d_com_inf_game.s
void init(int);
dSv_zoneBit_c& getZoneBit() { return zone_bit; }
+ const dSv_zoneBit_c& getZoneBitConst() const { return zone_bit; }
dSv_zoneActor_c& getZoneActor() { return zone_actor; }
const dSv_zoneActor_c& getZoneActorConst() const { return zone_actor; }