mirror of
https://github.com/zeldaret/oot
synced 2026-05-30 00:46:55 -04:00
[ntsc-1.2] Match z_game_over.c, PAL 1.1 fixes (#2099)
* Match z_game_over.c (PAL 1.1 change) * Fix previous matches that are actually PAL 1.1 changes * Add versions.h to global.h * Add versions.h to z_game_over.c too * And the others too * Fix awkward wording
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
#include "z64game_over.h"
|
||||
|
||||
#include "global.h"
|
||||
#include "versions.h"
|
||||
|
||||
void GameOver_Init(PlayState* play) {
|
||||
play->gameOverCtx.state = GAMEOVER_INACTIVE;
|
||||
@@ -61,7 +62,12 @@ void GameOver_Update(PlayState* play) {
|
||||
}
|
||||
}
|
||||
|
||||
#if OOT_VERSION < PAL_1_1
|
||||
gSaveContext.nayrusLoveTimer = 0;
|
||||
#else
|
||||
gSaveContext.nayrusLoveTimer = 2000;
|
||||
#endif
|
||||
|
||||
gSaveContext.save.info.playerData.naviTimer = 0;
|
||||
gSaveContext.seqId = (u8)NA_BGM_DISABLED;
|
||||
gSaveContext.natureAmbienceId = NATURE_ID_DISABLED;
|
||||
|
||||
Reference in New Issue
Block a user