mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-13 05:46:18 -04:00
Use NULL macro in asserts, fix NULL macro to match
This commit is contained in:
+1
-1
@@ -9,7 +9,7 @@
|
||||
|
||||
/* 80080018-8008010C .text dPath_GetPnt__FP5dPathi */
|
||||
dPath__Point* dPath_GetPnt(dPath* path, int pnt_index) {
|
||||
JUT_ASSERT(30, path != 0);
|
||||
JUT_ASSERT(30, path != NULL);
|
||||
JUT_ASSERT(31, 0 <= pnt_index && pnt_index < path->m_num);
|
||||
|
||||
if (path == NULL || path->mpPnt == NULL || 0 > pnt_index || pnt_index >= path->m_num)
|
||||
|
||||
Reference in New Issue
Block a user