diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-06-13 16:15:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-13 16:15:11 -0400 |
commit | c2a07276ae095a2345f68e34fcd76cdaffd889ea (patch) | |
tree | 9daf711e52915bee634e3a051f5a4f88db1d4a8f /src/pokenav_region_map.c | |
parent | a9a427c6f268e04468c8e30242f3ed4f96036848 (diff) | |
parent | 46f4a4bbf7239743c333cd32d30b74a7b3176acc (diff) |
Merge branch 'master' into doc-link
Diffstat (limited to 'src/pokenav_region_map.c')
-rwxr-xr-x | src/pokenav_region_map.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pokenav_region_map.c b/src/pokenav_region_map.c index dff6b8c6c..e858fad4a 100755 --- a/src/pokenav_region_map.c +++ b/src/pokenav_region_map.c @@ -506,7 +506,7 @@ static void LoadPokenavRegionMapGfx(struct Pokenav5Struct_2 *state) state->infoWindowId = AddWindow(&sMapSecInfoWindowTemplate); LoadUserWindowBorderGfx_(state->infoWindowId, 0x42, 0x40); DrawTextBorderOuter(state->infoWindowId, 0x42, 4); - decompress_and_copy_tile_data_to_vram(1, sRegionMapCityZoomTiles_Gfx, 0, 0, 0); + DecompressAndCopyTileDataToVram(1, sRegionMapCityZoomTiles_Gfx, 0, 0, 0); FillWindowPixelBuffer(state->infoWindowId, PIXEL_FILL(1)); PutWindowTilemap(state->infoWindowId); CopyWindowToVram(state->infoWindowId, 3); @@ -522,7 +522,7 @@ static void LoadPokenavRegionMapGfx(struct Pokenav5Struct_2 *state) static bool32 TryFreeTempTileDataBuffers(void) { - return free_temp_tile_data_buffers_if_possible(); + return FreeTempTileDataBuffersIfPossible(); } static void UpdateMapSecInfoWindow(struct Pokenav5Struct_2 *state) |