diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-03-30 17:38:09 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2021-03-30 17:38:09 -0400 |
commit | 8c6e89e994b312b3c6d36bcda8636343f80e4801 (patch) | |
tree | fc4eaf5a778dfda3405af33131960a64ec885048 /src/pokeblock.c | |
parent | d5d1caf96550c91baef4a7f02670a6f1c83f6559 (diff) |
Bit shifts from hex to decimal
Diffstat (limited to 'src/pokeblock.c')
-rw-r--r-- | src/pokeblock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pokeblock.c b/src/pokeblock.c index ee546deda..3513e7dd2 100644 --- a/src/pokeblock.c +++ b/src/pokeblock.c @@ -760,8 +760,8 @@ static void sub_8135FCC(s32 pkblId) { if (GetPokeblockData(pokeblock, PBLOCK_SPICY + i) > 0) { - rectTilemapSrc[0] = (i << 0xC) + 0x17; - rectTilemapSrc[1] = (i << 0xC) + 0x18; + rectTilemapSrc[0] = (i << 12) + 0x17; + rectTilemapSrc[1] = (i << 12) + 0x18; } else { |