make globals static

This commit is contained in:
goeiecool9999 2023-12-17 17:23:46 +01:00
parent 9c2b8a0621
commit 4ac7cb9f62

View file

@ -817,9 +817,9 @@ void LatteShaderCache_handleDeprecatedCacheFiles(fs::path pathGeneric, fs::path
} }
} }
AudioAPIPtr g_BootSndAudioDev = nullptr; static AudioAPIPtr g_BootSndAudioDev = nullptr;
std::unique_ptr<BootSoundReader> g_BootSndFileReader; static std::unique_ptr<BootSoundReader> g_BootSndFileReader;
FSCVirtualFile* g_bootSndFileHandle = 0; static FSCVirtualFile* g_bootSndFileHandle = 0;
void LatteShaderCache_InitBootSound() void LatteShaderCache_InitBootSound()
{ {