mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-07 23:41:18 +12:00
make globals static
This commit is contained in:
parent
9c2b8a0621
commit
4ac7cb9f62
1 changed files with 3 additions and 3 deletions
|
@ -817,9 +817,9 @@ void LatteShaderCache_handleDeprecatedCacheFiles(fs::path pathGeneric, fs::path
|
|||
}
|
||||
}
|
||||
|
||||
AudioAPIPtr g_BootSndAudioDev = nullptr;
|
||||
std::unique_ptr<BootSoundReader> g_BootSndFileReader;
|
||||
FSCVirtualFile* g_bootSndFileHandle = 0;
|
||||
static AudioAPIPtr g_BootSndAudioDev = nullptr;
|
||||
static std::unique_ptr<BootSoundReader> g_BootSndFileReader;
|
||||
static FSCVirtualFile* g_bootSndFileHandle = 0;
|
||||
|
||||
void LatteShaderCache_InitBootSound()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue