diff options
| author | Kevin Alexis Contreras <36680385+KiritoDv@users.noreply.github.com> | 2022-06-15 14:38:36 -0500 |
|---|---|---|
| committer | Nicholas Estelami <NEstelami@users.noreply.github.com> | 2022-06-19 00:07:29 -0400 |
| commit | 8a6ee00a2120c715baea71b141c11405be08a7c4 (patch) | |
| tree | f42df0b9362d7e47a53f770e558bce885d4e47f2 | |
| parent | b0278de3a8e4a8ad8720109dc10082df4e7b4b21 (diff) | |
Fixed indentation caused because of tabs
| -rw-r--r-- | soh/soh/OTRGlobals.cpp | 4 |
1 files 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<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(); |
