Hi everybody,
I want to create an array of samples in C++. But when I write the code as below, I get an error as: no appropriate default constructor available.
FSOUND_SAMPLE *smp=new FSOUND_SAMPLE[10];
I am new to Fmod, what must I do?
Thanks…
- yuceltas asked 10 years ago
- You must login to post comments
Does this work?
[code:1lx6yraq]
FSOUND_SAMPLE *smp[10];[/code:1lx6yraq]
- a1psx answered 10 years ago
- You must login to post comments
Your Answer
Please login first to submit.