misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Sun, 05 May 2019 17:23:59 +0200
changeset 14891 3054b85963ef
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Play sndFirstBlood after first damage/kill/poisoning of enemy (instead of ANY damage) This avoids sndFirstBlood being played for self-harm, for which this taunt is a bit odd.

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

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