Skip to content

Commit

Permalink
AGI: Fix new createDefaultPriorityTable() code
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Kiewitz committed Feb 13, 2016
1 parent 9f59b5e commit b727e8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/agi/graphics.cpp
Expand Up @@ -761,7 +761,7 @@ void GfxMgr::createDefaultPriorityTable(uint8 *priorityTable) {

for (priority = 1; priority < 15; priority++) {
for (step = 0; step < 12; step++) {
_priorityTable[yPos++] = priority < 4 ? 4 : priority;
priorityTable[yPos++] = priority < 4 ? 4 : priority;
}
}
}
Expand Down

0 comments on commit b727e8d

Please sign in to comment.