Migrated Gfx at 0x80186E20

This commit is contained in:
gijs 2023-09-24 12:09:00 +02:00
parent 4630e837a1
commit 507eb12304
2 changed files with 18 additions and 1 deletions

View File

@ -409,7 +409,7 @@ segments:
- [0x5CC00, .rodata, "gfx/ob_broad_badge"]
- [0x5CC90, .rodata, "gfx/ob_just_ducks"]
- [0x5CCD0, .rodata, "gfx/ob_aspiring_shade"]
- [0x5CD20, rodata]
- [0x5CD20, .rodata, "gfx/ob_exciting_skirt"]
- [0x5CD70, rodata]
- [0x5CEF0, rodata]
- [0x5CF00, rodata]

View File

@ -0,0 +1,17 @@
#include <ultra64.h>
#include "common.h"
/* 5CD20 80186E20 */
const Gfx DISPLAY_LIST_80186E20[] = {
gsDPPipeSync(),
gsDPPipeSync(),
gsDPSetCycleType(G_CYC_1CYCLE),
gsDPPipeSync(),
gsSPLoadGeometryMode(G_ZBUFFER | G_SHADE | G_CULL_BACK | G_SHADING_SMOOTH),
gsDPSetRenderMode(G_RM_AA_ZB_OPA_SURF, G_RM_AA_ZB_OPA_SURF2),
gsDPSetCombineMode(G_CC_SHADE, G_CC_SHADE),
gsSPTexture(0, 0, 0, G_TX_RENDERTILE, G_OFF),
gsDPPipeSync(),
gsSPEndDisplayList(),
};