From 0285c307e3a6e642a901a7c5c0c15d9ed88be5ec Mon Sep 17 00:00:00 2001 From: fledge68 Date: Thu, 12 Sep 2013 14:39:35 +0000 Subject: [PATCH] -changed brewflow to only be used when homebrew smallbox is on otherwise if smallbox is off homebrew uses coverflow for full size covers. --- source/menu/menu.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/menu/menu.cpp b/source/menu/menu.cpp index 33d4e55f..314af9ae 100644 --- a/source/menu/menu.cpp +++ b/source/menu/menu.cpp @@ -758,9 +758,9 @@ void CMenu::_loadCFLayout(int version, bool forceAA, bool otherScrnFmt) { bool homebrew = (m_sourceflow && m_cfg.getBool(_domainFromView(), "smallbox", true)) || m_current_view == COVERFLOW_HOMEBREW; bool smallbox = (homebrew || m_current_view == COVERFLOW_PLUGIN) && m_cfg.getBool(_domainFromView(), "smallbox", true); - string domain = (homebrew ? fmt("_BREWFLOW_%i", version) : (m_current_view == COVERFLOW_PLUGIN && !m_sourceflow) ? + string domain = ((homebrew && smallbox) ? fmt("_BREWFLOW_%i", version) : (m_current_view == COVERFLOW_PLUGIN && !m_sourceflow) ? fmt("_EMUFLOW_%i", version) : fmt("_COVERFLOW_%i", version)); - string domainSel = (homebrew ? fmt("_BREWFLOW_%i_S", version) : (m_current_view == COVERFLOW_PLUGIN && !m_sourceflow) ? + string domainSel = ((homebrew && smallbox) ? fmt("_BREWFLOW_%i_S", version) : (m_current_view == COVERFLOW_PLUGIN && !m_sourceflow) ? fmt("_EMUFLOW_%i_S", version) : fmt("_COVERFLOW_%i_S", version)); bool sf = otherScrnFmt;