misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Wed, 13 Apr 2016 13:16:01 +0200
changeset 11939 c17e5ac9f76d
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Force TechRacer maps when image map is selected. Fixes Google Code issue #882 If you start a TechRacer map with an image map selected, the resulting map will likely to be completely unplayable. So this commit disables this.

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

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