Add back Junk-category (#6091)

accidentally removed `case ITEM_CATEGORY_JUNK:` from large crate switch case
This commit is contained in:
Reppan
2026-01-04 15:03:26 +01:00
committed by GitHub
parent 2ed9c56ca3
commit 34728efe6f

View File

@@ -78,6 +78,7 @@ extern "C" void ObjKibako2_RandomizerDraw(Actor* thisx, PlayState* play) {
case ITEM_CATEGORY_LESSER:
Gfx_DrawDListOpa(play, (Gfx*)gLargeMinorCrateDL);
break;
case ITEM_CATEGORY_JUNK:
default:
Gfx_DrawDListOpa(play, (Gfx*)gLargeJunkCrateDL);
break;