misc/coverity_model.c
author nemo
Sat, 23 Jan 2016 17:29:44 -0500
changeset 11529 58b4e357bcbf
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
As an animation effect this should be in uGearsRender. Plus it'll still spark when paused then, which is kinda fun.

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

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