d_a_shop_item, d_a_b_go, d_a_b_gos OK (#2085)

* d_a_shop_item OK

* d_a_b_go OK

* d_a_b_gos OK

* remove asm

* some work on d_a_b_oh / d_a_b_zant_sima

* d_a_startAndGoal done
This commit is contained in:
TakaRikka
2024-03-07 19:23:18 -08:00
committed by GitHub
parent 22e941fd8c
commit ba4847e9cc
116 changed files with 2764 additions and 5897 deletions
+1 -1
View File
@@ -243,7 +243,7 @@ void JAISound::initTrack_JAISound_(JASTrack* track) {
numChannels++;
}
}
ASSERT(numChannels >= 1)
ASSERT(numChannels >= 1);
track->setChannelMgrCount(numChannels);
for (size_t i = 0; i < track->getChannelMgrCount(); i++) {
track->assignExtBuffer(i, soundParams[i]);
+1 -1
View File
@@ -10,7 +10,7 @@
#include "JSystem/JKernel/JKRDvdAramRipper.h"
#include "string.h"
#include "dolphin/dvd.h"
#include "global.h"
#include "dolphin/os.h"
//
// Forward References:
+1 -1
View File
@@ -1,6 +1,6 @@
#include "JSystem/JAudio2/JAUStreamFileTable.h"
#include "dolphin/dvd.h"
#include "global.h"
#include "dolphin/os.h"
/* 802A7420-802A742C 2A1D60 000C+00 0/0 1/1 0/0 .text __ct__18JAUStreamFileTableFv */
JAUStreamFileTable::JAUStreamFileTable() {
@@ -4,6 +4,7 @@
//
#include "JSystem/JStudio/JStudio/stb-data-parse.h"
#include "dolphin/os.h"
#include "global.h"
namespace JStudio {
+2 -3
View File
@@ -1,5 +1,6 @@
#include "dolphin/gx/GXTransform.h"
#include "dolphin/gx.h"
#include "dolphin/os.h"
void __GXSetMatrixIndex();
@@ -42,9 +43,7 @@ void GXProject(f32 model_x, f32 model_y, f32 model_z, Mtx model_mtx, f32* proj_m
f32 var_f28;
f32 var_f31;
ASSERT(proj_mtx != NULL && viewpoint != NULL && screen_x != NULL && screen_y != NULL &&
screen_z != NULL,
"GXGet*: invalid null pointer");
ASSERTMSG(proj_mtx != NULL && viewpoint != NULL && screen_x != NULL && screen_y != NULL && screen_z != NULL, "GXGet*: invalid null pointer");
sp10[0] = (model_mtx[0][0] * model_x) + (model_mtx[0][1] * model_y) +
(model_mtx[0][2] * model_z) + model_mtx[0][3];