wip debug / pal building, b_gm mostly done (#2285)

* b_gm mostly done

* wip debug / pal building

* fix configure.py

* fix some debug macros / flags
This commit is contained in:
TakaRikka
2025-01-16 09:37:39 -08:00
committed by GitHub
parent 6de1e50099
commit 0894b6ef34
1524 changed files with 202897 additions and 2955 deletions
+5 -5
View File
@@ -338,8 +338,8 @@ bool mDoMtx_stack_c::push() {
JUT_ASSERT(729, next < end)
return false;
}
Mtx* old = next++;
mDoMtx_copy(now, *old);
mDoMtx_copy(now, *next++);
return true;
}
@@ -349,8 +349,8 @@ bool mDoMtx_stack_c::pop() {
JUT_ASSERT(751, next > buffer);
return false;
}
next--;
mDoMtx_copy(*next, now);
mDoMtx_copy(*--next, now);
return true;
}
@@ -434,4 +434,4 @@ extern Mtx g_mDoMtx_identity = {
{1.0f, 0.0f, 0.0f, 0.0f},
{0.0f, 1.0f, 0.0f, 0.0f},
{0.0f, 0.0f, 1.0f, 0.0f},
};
};