mirror of
https://github.com/zeldaret/tp
synced 2026-06-07 12:07:34 -04:00
Regalloc/debug/misc fixes (#2794)
* Fix "0" asserts * More debug and regalloc fixes * Fix PTMF syntax for compatibility with other compilers * Fix some fakematches, link more TUs for J/P
This commit is contained in:
@@ -131,7 +131,6 @@ u8* daBgObj_c::spec_data_c::initFarInfoBlock(u8* i_dataPtr) {
|
||||
|
||||
/* 80459904-80459B64 000324 0260+00 1/1 0/0 1/1 .text Set__Q29daBgObj_c11spec_data_cFPv
|
||||
*/
|
||||
// NONMATCHING - close-ish
|
||||
bool daBgObj_c::spec_data_c::Set(void* i_ptr) {
|
||||
JUT_ASSERT(496, i_ptr != NULL);
|
||||
|
||||
@@ -160,7 +159,7 @@ bool daBgObj_c::spec_data_c::Set(void* i_ptr) {
|
||||
default:
|
||||
// Invalid data block type
|
||||
OS_REPORT_ERROR("データブロックタイプが不正です<%d>\n", block_type);
|
||||
JUT_PANIC(527, "0");
|
||||
JUT_ASSERT(527, FALSE);
|
||||
}
|
||||
|
||||
if (block_type == 0) {
|
||||
@@ -201,7 +200,7 @@ bool daBgObj_c::spec_data_c::Set(void* i_ptr) {
|
||||
default:
|
||||
// Invalid data block type
|
||||
OS_REPORT_ERROR("データブロックタイプが不正です<%d>\n", block_type);
|
||||
JUT_PANIC(570, "0");
|
||||
JUT_ASSERT(570, FALSE);
|
||||
}
|
||||
|
||||
if (block_type == 0) {
|
||||
@@ -242,7 +241,7 @@ bool daBgObj_c::spec_data_c::Set(void* i_ptr) {
|
||||
default:
|
||||
// "Data Block type invalid<%d>\n"
|
||||
OSReport_Error("データブロックタイプが不正です<%d>\n", block_type);
|
||||
JUT_PANIC(619, "0");
|
||||
JUT_ASSERT(619, FALSE);
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -980,7 +979,7 @@ void daBgObj_c::setParticle() {
|
||||
default:
|
||||
// Multi MoveBG: Particle model number is invalid <%d>
|
||||
OS_REPORT_ERROR("マルチMoveBG:パーティクルモデル番号が不正<%d>\n", modelNumber);
|
||||
JUT_PANIC(1689, "0");
|
||||
JUT_ASSERT(1689, FALSE);
|
||||
break;
|
||||
}
|
||||
JPABaseEmitter* emitter = dComIfGp_particle_set(
|
||||
|
||||
Reference in New Issue
Block a user