misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Thu, 28 Sep 2017 07:09:18 +0200
changeset 12571 903a30fb49e6
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix team colors of most teams in A Space Adventure to denote correct ally status A Space Adventure often gave different colors to allied teams, which is wrong! A few exceptions remain for technical reasons.

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

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