mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-13 00:58:29 +02:00
DolphinQt/Android: Add warning when converting NKit files
Yes, that's right! It's time to add even more NKit warnings, because users still don't understand what NKit is or how it works! More specifically, some users seem to be under the impression that converting an NKit file to for instance RVZ using Dolphin's convert feature will result in a normal RVZ file, when it in fact results in an NKit RVZ file (since NKit is not a container format in the sense that GCZ/WIA/RVZ/WBFS/CISO is, but rather a kind of trimmed ISO). I can hardly blame users for not knowing this, because it's not intuitive unless you know the technical details of how NKit works.
This commit is contained in:
@ -329,6 +329,21 @@ void ConvertDialog::Convert()
|
||||
}
|
||||
}
|
||||
|
||||
if (std::any_of(m_files.begin(), m_files.end(), std::mem_fn(&UICommon::GameFile::IsNKit)))
|
||||
{
|
||||
if (!ShowAreYouSureDialog(
|
||||
tr("Dolphin can't convert NKit files to non-NKit files. Converting an NKit file in "
|
||||
"Dolphin will result in another NKit file.\n"
|
||||
"\n"
|
||||
"If you want to convert an NKit file to a non-NKit file, you can use the same "
|
||||
"program as you originally used when converting the file to the NKit format.\n"
|
||||
"\n"
|
||||
"Do you want to continue anyway?")))
|
||||
{
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
QString extension;
|
||||
QString filter;
|
||||
switch (format)
|
||||
|
Reference in New Issue
Block a user