constructor TFModSound.Create;
var
TempInt: TFMOD_RESULT;
begin
inherited Create;
TempInt := FMOD_System_Create(@FmodInt, FMOD_VERSION);
if TempInt = FMOD_OK then
TempInt := FMOD_System_Init(FmodInt, FMOD_MAX_CHANNEL_WIDTH, FMOD_INIT_NORMAL, nil);
if TempInt = FMOD_OK then
TempInt := FMOD_System_CreateChannelGroup(FmodInt, ‘组’, @FModGroupInt);
end;
The use of delphi11.3 Cross-platform in mobile phone use
This FMOD_System_Create(@FmodInt, FMOD_VERSION);Return FMOD_ERR_INTERNAL
What’s the problem cause