aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/pet_control/pet_control.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/titanic/pet_control/pet_control.h')
-rw-r--r--engines/titanic/pet_control/pet_control.h15
1 files changed, 11 insertions, 4 deletions
diff --git a/engines/titanic/pet_control/pet_control.h b/engines/titanic/pet_control/pet_control.h
index 6e64d8d344..a6915e6e13 100644
--- a/engines/titanic/pet_control/pet_control.h
+++ b/engines/titanic/pet_control/pet_control.h
@@ -499,11 +499,18 @@ public:
return _rooms.getWellEntry();
}
- void setRooms1CC(int v) {
- _rooms.set1CC(v);
+ /**
+ * Sets the sub-level an SGT or 2nd class room is on
+ */
+ void setRoomsSublevel(int level) {
+ _rooms.setSublevel(level);
}
- int getRooms1CC() const {
- return _rooms.get1CC();
+
+ /**
+ * Gets the current sub-level for a stateroom
+ */
+ int getRoomsSublevel() const {
+ return _rooms.getSublevel();
}
/**