misc/coverity_model.c
author nemo
Tue, 09 Dec 2014 22:56:34 -0500
changeset 10645 b8c73bacb31e
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix in-flight colouring of land spray, make it use tint when added to land too (lua might find that handy), tweak climbhome cake delay slightly

void fpcrtl_halt(int num) {
    __coverity_panic__();
}

int fpcrtl_abs(int num) {
    return num >= 0 ? num : -num;
}