misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Thu, 05 Oct 2017 02:54:17 +0200
changeset 12656 5e115ed19e27
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Destroy rope when attempting to shoot it through wrap / bouncy world edge This fixes a variety of graphical glitches

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

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