[jak2] fix missing drill crane center part (#2692)

We were forcing the drill crane to draw at lod 0, but we should have
listened to the game and drawn it at lod 1.
This commit is contained in:
water111
2023-06-05 18:56:26 -04:00
committed by GitHub
parent e9f9869849
commit 3bb6bd0e3a
18 changed files with 50 additions and 38 deletions
+1 -1
View File
@@ -424,7 +424,7 @@ void pc_memmove(u32 dst, u32 src, u32 size) {
memmove(Ptr<u8>(dst).c(), Ptr<u8>(src).c(), size);
}
void send_gfx_dma_chain(u32 bank, u32 chain) {
void send_gfx_dma_chain(u32 /*bank*/, u32 chain) {
if (Gfx::GetCurrentRenderer()) {
Gfx::GetCurrentRenderer()->send_chain(g_ee_main_mem, chain);
}