Improve error messages for AudioClip assets

This commit is contained in:
VaDiM
2024-12-14 02:44:21 +03:00
parent ff92d1784d
commit 6608e76471
2 changed files with 23 additions and 9 deletions

View File

@ -1104,7 +1104,10 @@ namespace AssetStudioGUI
channels +
bits;
}
StatusStripUpdate("Preview not available: Unsupported fmod audio format. Try to export instead.");
var errorMsg = result == FMOD.RESULT.ERR_VERSION
? "Unsupported fmod version. Try to export raw and convert with an external tool instead."
: $"Preview not available, try to export instead. {FMOD.Error.String(result)}";
StatusStripUpdate(errorMsg);
FMODreset();
return;
}