Add missing cast.

This commit is contained in:
riccardom 2010-04-05 13:00:51 +00:00
parent c4c8592f7f
commit e324dc1e9a
1 changed files with 1 additions and 1 deletions

View File

@ -880,7 +880,7 @@ template<bool MOSAIC> void lineLarge8bpp(GPU * gpu)
//TODO - handle wrapping / out of bounds correctly from rot_scale_op?
u32 tmp_map = gpu->BG_bmp_large_ram[num] + lg * YBG;
u8* map = MMU_gpu_map(tmp_map);
u8* map = (u8 *)MMU_gpu_map(tmp_map);
u8* pal = MMU.ARM9_VMEM + gpu->core * ADDRESS_STEP_1KB;