check method
Throws FmodException when result is not FMOD_OK.
Implementation
void check(int result, String operation) {
if (result != fmodOk) throw FmodException(operation, result);
}
Throws FmodException when result is not FMOD_OK.
void check(int result, String operation) {
if (result != fmodOk) throw FmodException(operation, result);
}