I am getting the following error:
FMOD error An invalid object handle was used. : event->start()
I am only getting this in our engine and not in the test programs I have written to simplify it’s use.
Can you give me any hints to possible causes?
the calls to FMOD go something like this:
…load many .fev files
…many calls to getInfo/getGroup/getEvent(INFOONLY)
loop = group->getEvent(“loop”);
loop->start();
…delay
…many calls to getInfo/getGroup/getEvent(INFOONLY)
end = group->getEvent(“end”);
loop->stop()
end->start()
loop->start() // gives above error
the numeric value of loop is the same for all calls
- stephenmccaul asked 12 years ago
- You must login to post comments
Your Answer
Please login first to submit.