1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2024-12-29 08:16:11 +00:00

Minor cleanup

This commit is contained in:
Dragorn421 2021-12-16 16:47:25 +01:00
parent d54fb8c125
commit 148694d60f
No known key found for this signature in database
GPG key ID: 8ACAE4BA399BD6B0
2 changed files with 2 additions and 2 deletions

View file

@ -208,7 +208,7 @@ void Gameplay_Init(GameState* thisx) {
Audio_SetExtraFilter(0);
Quake_Init();
for (i = 0; i < 4; i++) {
for (i = 0; i < ARRAY_COUNT(globalCtx->cameraPtrs); i++) {
globalCtx->cameraPtrs[i] = NULL;
}

View file

@ -33,7 +33,7 @@ void Title_PrintBuildInfo(Gfx** gfxp) {
// Note: In other rom versions this function also updates unk_1D4, coverAlpha, addAlpha, visibleDuration to calculate
// the fade-in/fade-out + the duration of the n64 logo animation
void Title_Calc(TitleContext* this) {
this->exit = 1;
this->exit = true;
}
void Title_SetupView(TitleContext* this, f32 x, f32 y, f32 z) {