mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
ISOFile/GameFile: Correct GetWiiFSPath condition
This code was originally written when there only were three possible types, but nowadays we also have the DOL/ELF type.
This commit is contained in:
@ -363,7 +363,7 @@ const std::string GameListItem::GetWiiFSPath() const
|
||||
{
|
||||
std::string ret;
|
||||
|
||||
if (m_Platform != DiscIO::Platform::GAMECUBE_DISC)
|
||||
if (m_Platform == DiscIO::Platform::WII_DISC || m_Platform == DiscIO::Platform::WII_WAD)
|
||||
{
|
||||
const std::string path = Common::GetTitleDataPath(m_title_id, Common::FROM_CONFIGURED_ROOT);
|
||||
|
||||
|
Reference in New Issue
Block a user