diff options
| author | octorock <79596758+octorock@users.noreply.github.com> | 2024-01-06 14:59:48 +0100 |
|---|---|---|
| committer | octorock <79596758+octorock@users.noreply.github.com> | 2024-01-06 15:01:44 +0100 |
| commit | aced0bef691dbc41bdd39b6e62662d2436877a4b (patch) | |
| tree | e90f9fd8e4c4c3471c2fb246bb1372974294b469 /src/manager/manager29.c | |
| parent | c3b771a20923b335bbea2ab97a68ac29d04fcc43 (diff) | |
Rename metaTiles
Now the 16x16 tiles are just called tiles and the 8x8 tiles are called subTiles.
Diffstat (limited to 'src/manager/manager29.c')
| -rw-r--r-- | src/manager/manager29.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/manager/manager29.c b/src/manager/manager29.c index f1dcce72..e8e60896 100644 --- a/src/manager/manager29.c +++ b/src/manager/manager29.c @@ -32,9 +32,9 @@ void sub_0805CBD0(Manager29* this) { super->action = 1; this->unk_38 = (this->unk_38 >> 4 & 0x3fU) | (((this->unk_3a << 0x10) >> 0x14 & 0x3fU) << 6); this->unk_3a = (this->unk_3c >> 4 & 0x3f) | (((this->unk_36 + this->unk_37 * 0x100) >> 4 & 0x3fU) << 6); - this->unk_3c = GetMetaTileType(this->unk_38, this->layer); + this->unk_3c = GetTileType(this->unk_38, this->layer); mapLayer = GetLayerByIndex(this->layer); - this->unk_28 = (u16*)mapLayer->metatileTypes; + this->unk_28 = (u16*)mapLayer->tileTypes; this->unk_2c = &mapLayer->mapData[(s16)this->unk_3a]; } |
