misc/coverity_model.c
author nemo
Fri, 06 Apr 2018 12:34:23 -0400
changeset 13316 574d34577ee9
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
quick game wasn't checking for hidden themes. It should, but this will at least make them not-crash. The results are kind of amusing.

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

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