misc/coverity_model.c
author sheepluva
Tue, 12 Jan 2016 20:40:12 +0100
changeset 11504 9c5d9993b14b
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
fix volume being at 0 on engine start. note: seems window focus changes are not detected atm. (relevant for sound dampening)

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

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