diff options
author | Sierra A <6080951+Sierraffinity@users.noreply.github.com> | 2020-06-10 17:17:35 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-10 17:17:35 -0700 |
commit | 46f4a4bbf7239743c333cd32d30b74a7b3176acc (patch) | |
tree | bf38b6f1e63f1cd485e60adcdb8899bafde56fc7 /src/berry_crush.c | |
parent | a05eea93122f04e4aa3580e0e505376ead0d6e19 (diff) | |
parent | 74edaed4265cc7e964a5383c3e0fb8ef256f2bf8 (diff) |
Merge pull request #1074 from Sierraffinity/item-menu-cleanup
Begin item_menu.c cleanup
Diffstat (limited to 'src/berry_crush.c')
-rwxr-xr-x | src/berry_crush.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/berry_crush.c b/src/berry_crush.c index 383d273c4..48e4ac4c3 100755 --- a/src/berry_crush.c +++ b/src/berry_crush.c @@ -1031,7 +1031,7 @@ int sub_802104C(void) SetHBlankCallback(NULL); SetGpuReg(REG_OFFSET_DISPCNT, 0); ScanlineEffect_Stop(); - reset_temp_tile_data_buffers(); + ResetTempTileDataBuffers(); break; case 1: CpuFill16(0, (void *)OAM, OAM_SIZE); @@ -1069,10 +1069,10 @@ int sub_802104C(void) CopyBgTilemapBufferToVram(1); CopyBgTilemapBufferToVram(2); CopyBgTilemapBufferToVram(3); - decompress_and_copy_tile_data_to_vram(1, gUnknown_08DE34B8, 0, 0, 0); + DecompressAndCopyTileDataToVram(1, gUnknown_08DE34B8, 0, 0, 0); break; case 6: - if (free_temp_tile_data_buffers_if_possible()) + if (FreeTempTileDataBuffersIfPossible()) return 0; InitStandardTextBoxWindows(); |