misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Fri, 20 Jul 2018 14:33:41 +0200
changeset 13523 122e08d45caa
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix broken controller/joystick button and axis events The problem were bad records in SDLh.pas

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

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