misc/coverity_model.c
author alfadur
Tue, 11 Sep 2018 22:49:27 +0200
changeset 13807 8a7699ccb608
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Only show bullet hits for shovable gears Fixes some weird bullet hit vgears spawning when hitting non-shovable gears like snowflakes

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

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