1
0
Fork 0

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

pull/13007/head
Rubidium 2024-10-18 16:13:27 +02:00
parent 666f521f2c
commit 53ed29bd04
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;
}