Skip to content

Commit

Permalink
PINK: change size_t to uint
Browse files Browse the repository at this point in the history
  • Loading branch information
voltya authored and sev- committed Jun 28, 2018
1 parent 8733e54 commit 656ca28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/pink/file.cpp
Expand Up @@ -64,7 +64,7 @@ bool OrbFile::open(const Common::String &name) {

seek(_tableOffset);

for (size_t i = 0; i < _tableSize; ++i) {
for (uint i = 0; i < _tableSize; ++i) {
_table[i].load(*this);
}

Expand Down Expand Up @@ -111,7 +111,7 @@ ResourceDescription *OrbFile::getResDescTable(ObjectDescription *objDesc){
ResourceDescription *table = new ResourceDescription[objDesc->resourcesCount];
seek(objDesc->resourcesOffset);

for (size_t i = 0; i < objDesc->resourcesCount; ++i) {
for (uint i = 0; i < objDesc->resourcesCount; ++i) {
table[i].load(*this);
}

Expand Down

0 comments on commit 656ca28

Please sign in to comment.