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
parent 9885a2bb28
commit 025884b688
1 changed files with 1 additions and 1 deletions

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);
}
}