diff options
author | Travis Howell | 2005-04-20 01:49:01 +0000 |
---|---|---|
committer | Travis Howell | 2005-04-20 01:49:01 +0000 |
commit | a77a0656ea702075a38e03873fd619589f186f51 (patch) | |
tree | 473f38245e37d7fc9e24920756a281271c82f518 | |
parent | f360102741164509ce3310f1372f17fbb708d2f6 (diff) | |
download | scummvm-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.h | 2 |
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]; |