CRUISE: Directly use assert.

This fixes an ASSERT macro redefinition when compiling the Symbian port.
See bug #6622 "SYMBIAN: CRUISE: warning: `ASSERT' redefined".
This commit is contained in:
Johannes Schickel 2014-06-08 17:55:05 +02:00
parent 06b01b8920
commit 9e4dfe556e
13 changed files with 33 additions and 36 deletions

View file

@ -1608,7 +1608,7 @@ int16 Op_GetNodeX() {
int result = getNode(nodeInfo, node);
ASSERT(result == 0);
assert(result == 0);
return nodeInfo[0];
}
@ -1620,7 +1620,7 @@ int16 Op_GetNodeY() {
int result = getNode(nodeInfo, node);
ASSERT(result == 0);
assert(result == 0);
return nodeInfo[1];
}