misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Mon, 17 Jun 2019 20:20:01 +0200
changeset 15170 3cc1a79de3fd
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix air mine spawning inside land if land is almost completely full Bug conditions: * cAirMines >= 1 * Play with a drawn map filled with land

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

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