misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Fri, 18 Jan 2019 07:24:39 +0100
changeset 14632 5132548cdb77
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Add workaround around an SDL_mixer bug that screws up volume after using flamethrower (bug #721)

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

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