Fixed indentation caused because of tabs

This commit is contained in:
Kevin Alexis Contreras 2022-06-15 14:38:36 -05:00 committed by Nicholas Estelami
parent b0278de3a8
commit 8a6ee00a21
1 changed files with 2 additions and 2 deletions

View File

@ -614,10 +614,10 @@ std::map<std::string, SoundFontSample*> cachedCustomSFs;
extern "C" SoundFontSample* ReadCustomSample(const char* path) {
if (!ExtensionCache.contains(path))
if (!ExtensionCache.contains(path))
return nullptr;
ExtensionEntry entry = ExtensionCache[path];
ExtensionEntry entry = ExtensionCache[path];
auto sampleRaw = OTRGlobals::Instance->context->GetResourceManager()->LoadFile(entry.path);
uint32_t* strem = (uint32_t*)sampleRaw->buffer.get();