misc/coverity_model.c
author Wuzzy <Wuzzy2@mail.ru>
Thu, 15 Feb 2018 13:49:14 +0100 (2018-02-15)
changeset 13007 8a8aaaf97a95
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
The rottags key alone now toggles hog tags; preecise+rottags is used to cycle tags I figured that the toggling hog tags on and off is a bit more important than changing the tag types, because you sometimes run into a hog whose tags block your view, so a 1-key press is helpful. On the other hand, you probably only want to changing the tag types in the game once (if at all).
void fpcrtl_halt(int num) {
    __coverity_panic__();
}

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