aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/inventory.h
diff options
context:
space:
mode:
authorArnaud Boutonné2011-02-02 21:12:51 +0000
committerArnaud Boutonné2011-02-02 21:12:51 +0000
commit426354953618135c0cffd6e9f34caf606066e363 (patch)
treebb7bbf704988282dc04a42704136d24e70b5a53c /engines/hugo/inventory.h
parent441c5e02111461e901f1f886f62e63f3afb131e3 (diff)
downloadscummvm-rg350-426354953618135c0cffd6e9f34caf606066e363.tar.gz
scummvm-rg350-426354953618135c0cffd6e9f34caf606066e363.tar.bz2
scummvm-rg350-426354953618135c0cffd6e9f34caf606066e363.zip
HUGO: 'Constify' engine as much as possible
svn-id: r55741
Diffstat (limited to 'engines/hugo/inventory.h')
-rw-r--r--engines/hugo/inventory.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/hugo/inventory.h b/engines/hugo/inventory.h
index f786897ba1..04dbe4b1ea 100644
--- a/engines/hugo/inventory.h
+++ b/engines/hugo/inventory.h
@@ -43,7 +43,7 @@ class InventoryHandler {
public:
InventoryHandler(HugoEngine *vm);
- int16 processInventory(invact_t action, ...);
+ int16 processInventory(const invact_t action, ...);
void runInventory();
private:
@@ -51,7 +51,7 @@ private:
static const int kStepDy = 8; // Pixels per step movement
- void constructInventory(int16 imageTotNumb, int displayNumb, bool scrollFl, int16 firstObjId);
+ void constructInventory(const int16 imageTotNumb, int displayNumb, const bool scrollFl, int16 firstObjId);
};
} // End of namespace Hugo