1
0
Fork 0

Codechange: create the TileIndexDiff of the whole translation we want to execute

pull/13015/head
Rubidium 2024-10-18 16:13:27 +02:00 committed by rubidium42
parent a6b7593a52
commit 1998e94ae7
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ public:
this->tile++;
} else if (--this->y > 0) {
this->x = this->w;
this->tile += TileDiffXY(1, 1) - this->w;
this->tile += TileDiffXY(1 - this->w, 1);
} else {
this->tile = INVALID_TILE;
}