My code is as follows:
FMOD::System *system;
FMOD::System_Create(&system);
system->init(64, FMOD_INIT_NORMAL, nullptr);
FMOD::Sound * sound = fsystem->createSound(“xxx.mid”, FMOD_DEFAULT, 0, &sound);
sound->setMode(FMOD_DEFAULT);
FMOD::Channel *channel = 0;
fsystem->playSound(sound, 0, false, &channel);
channel->setVolume(1.0f);
Why is there no sound?
But playing MP3 is normal.