Rename metaTiles

Now the 16x16 tiles are just called tiles and the 8x8 tiles are called subTiles.
This commit is contained in:
octorock
2024-01-06 14:59:48 +01:00
parent c3b771a209
commit aced0bef69
195 changed files with 9739 additions and 9736 deletions
+3 -3
View File
@@ -34,12 +34,12 @@ void Well_Init(WellEntity* this) {
super->action = 1;
tilePos = COORD_TO_TILE(super);
this->unk_80 = tilePos;
SetMetaTile(SPECIAL_META_TILE_125, this->unk_80, LAYER_BOTTOM);
SetTile(SPECIAL_TILE_125, this->unk_80, LAYER_BOTTOM);
}
void Well_Action1(WellEntity* this) {
u32 tileIndex = GetMetaTileType(this->unk_80, LAYER_BOTTOM);
if (tileIndex != SPECIAL_META_TILE_125) {
u32 tileIndex = GetTileType(this->unk_80, LAYER_BOTTOM);
if (tileIndex != SPECIAL_TILE_125) {
PausePlayer();
gPlayerEntity.base.x.WORD = super->x.WORD;
gPlayerEntity.base.y.HALF.HI = super->y.HALF.HI + 4;