misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Tue, 31 Oct 2017 18:30:53 +0100
changeset 12811 de3cbbb09915
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix host not re-sending ammo scheme after editing an existing ammo scheme This caused clients to start with an incompatible ammo loadout.

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

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