remindernote: false for unchanged, true for changed

This commit is contained in:
AzaezelX 2024-02-05 14:40:24 -06:00
parent da9b9ed787
commit ef858d726b

View file

@ -448,7 +448,7 @@ bool SoundAsset::_setSoundFile(void* object, const char* index, const char* data
id = dAtoui(index); id = dAtoui(index);
if (pData->mSoundFile[id] == data) if (pData->mSoundFile[id] == data)
return true; return false;
// Update. // Update.
pData->mSoundFile[id] = data; pData->mSoundFile[id] = data;
@ -459,7 +459,7 @@ bool SoundAsset::_setSoundFile(void* object, const char* index, const char* data
// Refresh the asset. // Refresh the asset.
pData->refreshAsset(); pData->refreshAsset();
return false; return true;
} }
StringTableEntry SoundAsset::getAssetIdByFileName(StringTableEntry fileName) StringTableEntry SoundAsset::getAssetIdByFileName(StringTableEntry fileName)