mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-16 13:59:39 -04:00
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:
@@ -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},
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user