summaryrefslogtreecommitdiff
path: root/src/code/sys_matrix.c
diff options
context:
space:
mode:
authorAnghelo Carvajal <angheloalf95@gmail.com>2021-04-29 14:39:46 -0400
committerGitHub <noreply@github.com>2021-04-29 14:39:46 -0400
commit98aef8988adbcb5960e8001e70141d0d1a9034bd (patch)
treea0443e402cb6fa06b0f964aad6d38bf185fb2a9b /src/code/sys_matrix.c
parent0b8252cfe99651b3174ac8652ba133781e8e2105 (diff)
`assert` macro OK (#755)
* create assert macro and replace a bunch of __assert Signed-off-by: angie <angheloalf95@gmail.com> * Another bunch of assert Signed-off-by: angie <angheloalf95@gmail.com> * more assert Signed-off-by: angie <angheloalf95@gmail.com> * assert(false) Signed-off-by: angie <angheloalf95@gmail.com> * last assert used in matching code Signed-off-by: angie <angheloalf95@gmail.com> * the non-matchings Signed-off-by: angie <angheloalf95@gmail.com> * typo Signed-off-by: angie <angheloalf95@gmail.com> * format Signed-off-by: angie <angheloalf95@gmail.com> * change macro to uppercase Signed-off-by: angie <angheloalf95@gmail.com> * Apply suggestions from code review Co-authored-by: Roman971 <32455037+Roman971@users.noreply.github.com> * Change ASSERT(false) to ASSERT(0) Co-authored-by: Roman971 <32455037+Roman971@users.noreply.github.com>
Diffstat (limited to 'src/code/sys_matrix.c')
-rw-r--r--src/code/sys_matrix.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/code/sys_matrix.c b/src/code/sys_matrix.c
index ca1a3924f..6427ccbb9 100644
--- a/src/code/sys_matrix.c
+++ b/src/code/sys_matrix.c
@@ -31,9 +31,7 @@ void Matrix_Push(void) {
void Matrix_Pop(void) {
sCurrentMatrix--;
- if (sCurrentMatrix < sMatrixStack) {
- __assert("Matrix_now >= Matrix_stack", "../sys_matrix.c", 176);
- }
+ ASSERT(sCurrentMatrix >= sMatrixStack, "Matrix_now >= Matrix_stack", "../sys_matrix.c", 176);
}
void Matrix_Get(MtxF* dest) {