misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Fri, 04 May 2018 01:39:22 +0200
changeset 13377 03e4d9b5b09c
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Continental supplies: Upside-Down World special now works in cave maps as well In cave maps, the hog is teleported just below the border. A bit of land is erased, too.

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

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