misc/coverity_model.c
author unc0rr
Tue, 01 Jan 2019 02:22:01 +0100
changeset 14527 a4d560aeda96
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Never consider a bot in inf attacks mode being in after attack mode, helps action in inf attack - Also start thinking if TurnTimeLeft is bigger than default value

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

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