mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-17 07:49:21 +00:00
Warning fixes:
- Don't use %lu for size_t; they're different on Linux x86. - has_warned_about_drivers is only used on win32, so only declare it there to avoid a unused variable warning.
This commit is contained in:
parent
1ec4894bc5
commit
cb3afe8f70
3 changed files with 5 additions and 3 deletions
|
@ -887,7 +887,7 @@ void CISOProperties::OnExtractDataFromHeader(wxCommandEvent& event)
|
|||
}
|
||||
else
|
||||
{
|
||||
PanicAlertT("Partition doesn't exist: %lu", partitionNum);
|
||||
PanicAlertT("Partition doesn't exist: %u", (unsigned) partitionNum);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue