mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-07-18 03:24:15 -04:00
Improve error messages for AudioClip assets
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user