misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Thu, 02 Aug 2018 04:40:42 +0200
changeset 13600 75c322ac6670
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix broken Big Armory mission map A change in random map generation post-0.9.24 broken the generated Big Armory map. To fix this, we move over to image map so it never changes.

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

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