FilesystemPanel: Expand game partition rather than second partition

The game partition is normally the second partition, but not
if the disc has been scrubbed to only contain one partition.
This commit is contained in:
JosJuice 2017-06-09 18:04:58 +02:00
commit 025884b688

View file

@ -215,7 +215,7 @@ bool FilesystemPanel::PopulateFileSystemTree()
m_tree_ctrl->SetItemData(partition_root, partition);
CreateDirectoryTree(m_tree_ctrl, partition_root, partition->filesystem->GetFileList());
if (i == 1)
if (partitions[i] == m_opened_iso->GetGamePartition())
m_tree_ctrl->Expand(partition_root);
}
}