aboutsummaryrefslogtreecommitdiff
path: root/engines/supernova/rooms.h
diff options
context:
space:
mode:
authorJoseph-Eugene Winzer2017-06-23 19:53:05 +0200
committerThierry Crozat2018-01-22 23:42:07 +0000
commit6c4768a051b64f14af47c343f589b3bee34aba0a (patch)
tree199bc173a71dd80e1b795626a92bbd067ed79725 /engines/supernova/rooms.h
parent018cff8c4252aa41989974ef639af955dee516c2 (diff)
downloadscummvm-rg350-6c4768a051b64f14af47c343f589b3bee34aba0a.tar.gz
scummvm-rg350-6c4768a051b64f14af47c343f589b3bee34aba0a.tar.bz2
scummvm-rg350-6c4768a051b64f14af47c343f589b3bee34aba0a.zip
SUPERNOVA: Reformatting
Substitute size_t with ScummVM defined uint type
Diffstat (limited to 'engines/supernova/rooms.h')
-rw-r--r--engines/supernova/rooms.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/supernova/rooms.h b/engines/supernova/rooms.h
index 611f4c23b3..e78f446987 100644
--- a/engines/supernova/rooms.h
+++ b/engines/supernova/rooms.h
@@ -49,13 +49,13 @@ public:
return _fileNumber;
}
- void setSectionVisible(size_t section, bool visible) {
+ void setSectionVisible(uint section, bool visible) {
_shown[section] = visible;
}
- bool isSectionVisible(size_t index) const {
+ bool isSectionVisible(uint index) const {
return _shown[index];
}
- Object *getObject(size_t index) {
+ Object *getObject(uint index) {
return &_objectState[index];
}