misc/coverity_model.c
author antonc27 <antonc27@mail.ru>
Sat, 12 Sep 2015 04:12:29 +0200
branchios-revival
changeset 11161 ce19a557e3b4
parent 10498 bcd1d7ad2f3e
permissions -rw-r--r--
- Reset for previously selected static map Note: If static map doesn't reset, library continue to use it, even if user select generated maze map from game settings.

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

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