From 624888e131b1e55e2c79f1ad2d443034cbd6d339 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Fri, 24 Jan 2020 14:52:12 +1000 Subject: [PATCH] HostInterface: Default BIOS path to bios subdirectory --- src/core/host_interface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/host_interface.cpp b/src/core/host_interface.cpp index bc0c0f0da..6ec6a33e4 100644 --- a/src/core/host_interface.cpp +++ b/src/core/host_interface.cpp @@ -563,7 +563,7 @@ void HostInterface::SetDefaultSettings() m_settings.audio_backend = AudioBackend::Default; m_settings.audio_sync_enabled = true; - m_settings.bios_path = "scph1001.bin"; + m_settings.bios_path = GetUserDirectoryRelativePath("bios/scph1001.bin"); m_settings.bios_patch_tty_enable = false; m_settings.bios_patch_fast_boot = false;