mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-07-18 03:24:15 -04:00
Update FMOD to v2.03.06
- Fixed a bug that caused audioСlip preview volume to reset when selecting an asset - Added some native libs for linux-arm64, win-arm64
This commit is contained in:
@ -119,11 +119,9 @@ namespace AssetStudioGUI
|
||||
debugLog += GenerateAudioClipInfo(m_AudioClip);
|
||||
}
|
||||
|
||||
var debugLogConverter = "";
|
||||
var buffer = converter.IsLegacy
|
||||
? converter.RawAudioClipToWav(out debugLogConverter)
|
||||
: converter.ConvertToWav(m_AudioData, out debugLogConverter);
|
||||
debugLog += debugLogConverter;
|
||||
? converter.RawAudioClipToWav(ref debugLog)
|
||||
: converter.ConvertToWav(m_AudioData, ref debugLog);
|
||||
if (buffer == null)
|
||||
{
|
||||
Logger.Warning($"{debugLog}Failed to export \"{item.Text}\": Failed to convert fmod audio to Wav");
|
||||
|
Reference in New Issue
Block a user