diff options
author | Max Horn | 2007-06-14 17:11:09 +0000 |
---|---|---|
committer | Max Horn | 2007-06-14 17:11:09 +0000 |
commit | ac1eea6265167c7356904054ffb5e5c322653317 (patch) | |
tree | 96206d3d736db6f04a6ec894d1e16846b663e660 | |
parent | 4d4cd489f5c544f2b1e3e56d595a5f876ffa56af (diff) | |
download | scummvm-rg350-ac1eea6265167c7356904054ffb5e5c322653317.tar.gz scummvm-rg350-ac1eea6265167c7356904054ffb5e5c322653317.tar.bz2 scummvm-rg350-ac1eea6265167c7356904054ffb5e5c322653317.zip |
Fixed warning about signedness issues
svn-id: r27402
-rw-r--r-- | engines/agi/wagparser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agi/wagparser.h b/engines/agi/wagparser.h index e8ce9468a0..1fc554d522 100644 --- a/engines/agi/wagparser.h +++ b/engines/agi/wagparser.h @@ -201,7 +201,7 @@ protected: class WagFileParser { // Constants, type definitions, enumerations etc. public: - static const int WINAGI_VERSION_LENGTH = 16; ///< WinAGI's version string's length (Always 16) + static const uint WINAGI_VERSION_LENGTH = 16; ///< WinAGI's version string's length (Always 16) typedef Common::Array<WagProperty> PropertyList; ///< A type definition for an array of *.wag file properties public: |