misc/coverity_model.c
author sheepluva
Sat, 23 Apr 2016 09:54:05 +0200
changeset 11668 0427a9b6457b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
fix sounds not playing on first play (=load), because function bailed on success, rather than error. introduced in bd9a2f1b0080 , addressing issue #111

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

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