mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-18 15:48:48 +00:00
Updated pathfinder debug output.
svn-id: r32024
This commit is contained in:
parent
35d01db1aa
commit
61a105c9ba
@ -68,7 +68,7 @@ int KyraEngine::findWay(int x, int y, int toX, int toY, int *moveTable, int move
|
||||
/*if (curX >= 0 && curY >= 0 && curX < 320 && curY < 200) {
|
||||
screen()->setPagePixel(0, curX, curY, 11);
|
||||
screen()->updateScreen();
|
||||
//waitTicks(5);
|
||||
delayWithTicks(5);
|
||||
}*/
|
||||
moveTable[lastUsedEntry++] = newFacing;
|
||||
x = curX;
|
||||
@ -84,7 +84,7 @@ int KyraEngine::findWay(int x, int y, int toX, int toY, int *moveTable, int move
|
||||
/*if (curX >= 0 && curY >= 0 && curX < 320 && curY < 200) {
|
||||
screen()->setPagePixel(0, curX, curY, 8);
|
||||
screen()->updateScreen();
|
||||
//waitTicks(5);
|
||||
delayWithTicks(5);
|
||||
}*/
|
||||
|
||||
if (!lineIsPassable(curX, curY)) {
|
||||
@ -183,7 +183,7 @@ int KyraEngine::findSubPath(int x, int y, int toX, int toY, int *moveTable, int
|
||||
/*if (xpos1 >= 0 && ypos1 >= 0 && xpos1 < 320 && ypos1 < 200) {
|
||||
screen()->setPagePixel(0, xpos1, ypos1, unkTable[start]);
|
||||
screen()->updateScreen();
|
||||
//waitTicks(5);
|
||||
delayWithTicks(5);
|
||||
}*/
|
||||
if (newFacing & 1) {
|
||||
int temp = xpos1 + addPosTableX[newFacing + start * 8];
|
||||
|
Loading…
Reference in New Issue
Block a user