misc/coverity_model.c
author Wuzzy <almikes@aol.com>
Tue, 04 Apr 2017 02:41:11 +0200
changeset 12158 4b3995a62084
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
Fix incorrect size of Beach theme icons The icons had about double the required size. This caused a graphical glitch when selecting Beach and hand-drawn map.

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

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