misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Fri, 09 Mar 2018 12:43:36 +0100
changeset 13145 e330feceb662
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Hide team bar if all hedgehogs in it are hidden or dead This fixes some minor spoilers in the campaigns, especially A Classic Fairytale. This only affects hogs hidden with HideHog. Invisible hogs (gstInvisible) don't affect the team bars.

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

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