aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2005-04-20 01:49:01 +0000
committerTravis Howell2005-04-20 01:49:01 +0000
commita77a0656ea702075a38e03873fd619589f186f51 (patch)
tree473f38245e37d7fc9e24920756a281271c82f518
parentf360102741164509ce3310f1372f17fbb708d2f6 (diff)
downloadscummvm-rg350-a77a0656ea702075a38e03873fd619589f186f51.tar.gz
scummvm-rg350-a77a0656ea702075a38e03873fd619589f186f51.tar.bz2
scummvm-rg350-a77a0656ea702075a38e03873fd619589f186f51.zip
Switch to uint for safety.
svn-id: r17702
-rw-r--r--scumm/scumm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/scumm.h b/scumm/scumm.h
index 80b27203a5..6df6c24a7d 100644
--- a/scumm/scumm.h
+++ b/scumm/scumm.h
@@ -381,7 +381,7 @@ public:
// Core variables
byte _gameId;
byte _version;
- byte _heversion;
+ uint8 _heversion;
uint32 _features; // Should only be accessed for reading (TODO enforce it compiler-wise with making it private and creating an accessor)
uint8 _gameMD5[16];