misc/coverity_model.c
author alfadur
Fri, 06 Oct 2017 14:45:22 +0200
changeset 12657 2065819170ce
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
(Hopefully) fix game camera being shifted on Windows 10 IMPORTANT: This fix needs testing before 0.9.23 release!

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

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