diff options
author | Max Horn | 2005-12-11 13:15:03 +0000 |
---|---|---|
committer | Max Horn | 2005-12-11 13:15:03 +0000 |
commit | 0dbbdc60595ecb1d163fe76a4d1f8205183f492f (patch) | |
tree | b93614015187a8cc244e00c358e7dc3d4a5b563d /sword2 | |
parent | 7cbb9af1137a55f4b840ea980f5c6133f6697d4d (diff) | |
download | scummvm-rg350-0dbbdc60595ecb1d163fe76a4d1f8205183f492f.tar.gz scummvm-rg350-0dbbdc60595ecb1d163fe76a4d1f8205183f492f.tar.bz2 scummvm-rg350-0dbbdc60595ecb1d163fe76a4d1f8205183f492f.zip |
Fix warning
svn-id: r19776
Diffstat (limited to 'sword2')
-rw-r--r-- | sword2/resman.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sword2/resman.cpp b/sword2/resman.cpp index 8269f54c4a..fc2984a722 100644 --- a/sword2/resman.cpp +++ b/sword2/resman.cpp @@ -189,7 +189,7 @@ ResourceManager::~ResourceManager() { _vm->_memory->memFree(res->ptr); res = res->next; } - for (int i = 0; i < _totalClusters; i++) + for (uint i = 0; i < _totalClusters; i++) free(_resFiles[i].entryTab); free(_resList); free(_resConvTable); |