RegTest: Fix OOB array read

This commit is contained in:
Stenzek 2024-08-14 13:33:43 +10:00
parent 0f03aa3e30
commit 159254c37a
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ bool RegTestHost::InitializeConfig()
EmuFolders::EnsureFoldersExist();
// imgui setup, make sure it doesn't bug out
ImGuiManager::SetFontPathAndRange(std::string(), {0x0020, 0x00FF});
ImGuiManager::SetFontPathAndRange(std::string(), {0x0020, 0x00FF, 0, 0});
return true;
}