misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Wed, 23 Nov 2016 20:25:44 +0100
changeset 12048 475a1289f940
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix game extremely slowing down if hog collects crate with huge health, or vampire gets huge health.

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

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