summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Alexis Contreras <36680385+KiritoDv@users.noreply.github.com>2022-06-15 14:38:36 -0500
committerNicholas Estelami <NEstelami@users.noreply.github.com>2022-06-19 00:07:29 -0400
commit8a6ee00a2120c715baea71b141c11405be08a7c4 (patch)
treef42df0b9362d7e47a53f770e558bce885d4e47f2
parentb0278de3a8e4a8ad8720109dc10082df4e7b4b21 (diff)
Fixed indentation caused because of tabs
-rw-r--r--soh/soh/OTRGlobals.cpp4
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();