misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Thu, 11 Jul 2019 19:14:54 +0200
changeset 15233 b189d6a2ecda
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Cleanup gtAirAttack behaviour in weWrap Fixed bugs: - Gear position was not wrapped properly, messing up repeat rendering - Gear spawned outside of map bounds

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

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