From 1feadc186d2e0f554629730f9255f00de2dae35f Mon Sep 17 00:00:00 2001 From: Kojin Date: Wed, 14 Oct 2020 15:19:59 -0400 Subject: [PATCH] pcsx2: enable hostfs on release builds --- pcsx2/gui/MainFrame.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pcsx2/gui/MainFrame.cpp b/pcsx2/gui/MainFrame.cpp index 52fe691254..ccc40cdff5 100644 --- a/pcsx2/gui/MainFrame.cpp +++ b/pcsx2/gui/MainFrame.cpp @@ -394,9 +394,9 @@ void MainEmuFrame::CreatePcsx2Menu() wxEmptyString, wxITEM_CHECK); #endif - if (IsDebugBuild || IsDevBuild) - m_GameSettingsSubmenu.Append(MenuId_EnableHostFs, _("Enable &Host Filesystem"), - wxEmptyString, wxITEM_CHECK); + + m_GameSettingsSubmenu.Append(MenuId_EnableHostFs, _("Enable &Host Filesystem"), + wxEmptyString, wxITEM_CHECK); m_menuSys.AppendSeparator();