misc/coverity_model.c
author nemo
Fri, 03 Apr 2015 16:46:14 -0400
changeset 10891 a4c454ef80a6
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
enable bounce on rubber for air bombs. give them the missing elasticity they needed for the code there to work properly.

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

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