From 8a6ee00a2120c715baea71b141c11405be08a7c4 Mon Sep 17 00:00:00 2001 From: Kevin Alexis Contreras <36680385+KiritoDv@users.noreply.github.com> Date: Wed, 15 Jun 2022 14:38:36 -0500 Subject: [PATCH] Fixed indentation caused because of tabs --- soh/soh/OTRGlobals.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/soh/soh/OTRGlobals.cpp b/soh/soh/OTRGlobals.cpp index 35de6c140..c9f289c7a 100644 --- a/soh/soh/OTRGlobals.cpp +++ b/soh/soh/OTRGlobals.cpp @@ -614,10 +614,10 @@ std::map 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();