mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
DolphinQt: Show a warning when launching an NKit disc image
It is my opinion that nobody should use NKit disc images without being aware of the drawbacks of them. Since it seems like almost nobody who is using NKit disc images knows what NKit is (hmm, now how could that have happened...?), I am adding a warning to Dolphin so that you can't run NKit disc images without finding out about the drawbacks. In case someone really does want to use NKit disc images, the warning has a "Don't show this again" option. Unfortunately, I can't retroactively add the warning where it's most needed: in Dolphin 5.0, which does not support Wii NKit disc images.
This commit is contained in:
parent
b354e343a7
commit
2e8c5b4521
14 changed files with 160 additions and 15 deletions
|
@ -289,6 +289,11 @@ bool VolumeWAD::IsDatelDisc() const
|
|||
return false;
|
||||
}
|
||||
|
||||
bool VolumeWAD::IsNKit() const
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
std::map<Language, std::string> VolumeWAD::GetLongNames() const
|
||||
{
|
||||
if (!m_tmd.IsValid() || !IOS::ES::IsChannel(m_tmd.GetTitleId()))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue