misc/coverity_model.c
author nemo
Sun, 15 Nov 2015 10:22:42 -0500
changeset 11389 c93f204a5a00
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Set gears that go off map to gmDestroy instead of collision, disable morewind for no-gravity gears, restrict application of wind to gears that are already moving and not colliding.

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

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