mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-12 19:04:38 +00:00
Merge branch 'main' into doc_pause_menu
This commit is contained in:
commit
77d9a1ec7a
282 changed files with 8441 additions and 7222 deletions
|
@ -10,9 +10,12 @@ TransitionTile sTransitionTile;
|
|||
s32 gTransitionTileState;
|
||||
VisMono sPlayVisMono;
|
||||
Color_RGBA8_u32 gVisMonoColor;
|
||||
|
||||
#if OOT_DEBUG
|
||||
FaultClient D_801614B8;
|
||||
#endif
|
||||
|
||||
s16 sTransitionFillTimer;
|
||||
u64 sDebugCutsceneScriptBuf[0xA00];
|
||||
|
||||
void Play_SpawnScene(PlayState* this, s32 sceneId, s32 spawn);
|
||||
|
||||
|
@ -451,7 +454,10 @@ void Play_Init(GameState* thisx) {
|
|||
AnimationContext_Update(this, &this->animationCtx);
|
||||
gSaveContext.respawnFlag = 0;
|
||||
|
||||
if (OOT_DEBUG && R_USE_DEBUG_CUTSCENE) {
|
||||
#if OOT_DEBUG
|
||||
if (R_USE_DEBUG_CUTSCENE) {
|
||||
static u64 sDebugCutsceneScriptBuf[0xA00];
|
||||
|
||||
gDebugCutsceneScript = sDebugCutsceneScriptBuf;
|
||||
PRINTF("\nkawauso_data=[%x]", gDebugCutsceneScript);
|
||||
|
||||
|
@ -459,6 +465,7 @@ void Play_Init(GameState* thisx) {
|
|||
// Presumably the ROM was larger at a previous point in development when this debug feature was used.
|
||||
DmaMgr_DmaRomToRam(0x03FEB000, gDebugCutsceneScript, sizeof(sDebugCutsceneScriptBuf));
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
void Play_Update(PlayState* this) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue