mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-03 14:49:22 +00:00
Merge pull request #5453 from leoetlino/fix
WX: Use the proper format specifier
This commit is contained in:
commit
a0e4bb4aa6
1 changed files with 1 additions and 1 deletions
|
@ -232,7 +232,7 @@ void FilesystemPanel::PopulateFileSystemTreeWii() const
|
||||||
if (file_system)
|
if (file_system)
|
||||||
{
|
{
|
||||||
wxTreeItemId partition_root = m_tree_ctrl->AppendItem(
|
wxTreeItemId partition_root = m_tree_ctrl->AppendItem(
|
||||||
m_tree_ctrl->GetRootItem(), wxString::Format(_("Partition %i"), i), ICON_DISC);
|
m_tree_ctrl->GetRootItem(), wxString::Format(_("Partition %zu"), i), ICON_DISC);
|
||||||
|
|
||||||
WiiPartition* const partition = new WiiPartition(std::move(file_system));
|
WiiPartition* const partition = new WiiPartition(std::move(file_system));
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue