misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Fri, 09 Mar 2018 00:44:36 +0100
changeset 13135 824a75401a61
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
ACF7: Make hogs talk when you complete a part of the second mission goal (reach princess / free friends) To make sure the player doesn't forget these. Other bugfixes: - When you skip the 2nd cut scene, hero was teleported back - Increase princess <-> hero distance tolerance

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

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