diff options
author | LittleWhite <lw.demoscene@googlemail.com> | 2016-01-07 18:36:10 +0100 |
---|---|---|
committer | LittleWhite <lw.demoscene@googlemail.com> | 2016-03-03 22:52:29 +0100 |
commit | 7ad669a9115dfaf3271487269d8d8bcdf2c51e03 (patch) | |
tree | 2d8de106475388e6fb9fdd6f42f51a829ef9a5c0 /src/citra_qt/main.cpp | |
parent | Merge pull request #1446 from vitorsilverio/patch-2 (diff) | |
download | yuzu-7ad669a9115dfaf3271487269d8d8bcdf2c51e03.tar yuzu-7ad669a9115dfaf3271487269d8d8bcdf2c51e03.tar.gz yuzu-7ad669a9115dfaf3271487269d8d8bcdf2c51e03.tar.bz2 yuzu-7ad669a9115dfaf3271487269d8d8bcdf2c51e03.tar.lz yuzu-7ad669a9115dfaf3271487269d8d8bcdf2c51e03.tar.xz yuzu-7ad669a9115dfaf3271487269d8d8bcdf2c51e03.tar.zst yuzu-7ad669a9115dfaf3271487269d8d8bcdf2c51e03.zip |
Diffstat (limited to 'src/citra_qt/main.cpp')
-rw-r--r-- | src/citra_qt/main.cpp | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index da9ea6c91..d2ba3f9db 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp @@ -259,9 +259,34 @@ void GMainWindow::BootGame(const std::string& filename) { System::Init(render_window); // Load the game - if (Loader::ResultStatus::Success != Loader::LoadFile(filename)) { + Loader::ResultStatus result = Loader::LoadFile(filename); + if (Loader::ResultStatus::Success != result) { LOG_CRITICAL(Frontend, "Failed to load ROM!"); System::Shutdown(); + + switch (result) { + case Loader::ResultStatus::ErrorEncrypted: { + // Build the MessageBox ourselves to have clickable link + QMessageBox popup_error; + popup_error.setTextFormat(Qt::RichText); + popup_error.setWindowTitle(tr("Error while loading ROM !")); + popup_error.setText(tr("The ROM is probably encrypted !<br/><br/>" + "Please check: <a href='https://github.com/citra-emu/citra/wiki/Dumping-Game-Cartridges'>https://github.com/citra-emu/citra/wiki/Dumping-Game-Cartridges</a>")); + popup_error.setIcon(QMessageBox::Critical); + popup_error.exec(); + break; + } + case Loader::ResultStatus::ErrorInvalidFormat: + QMessageBox::critical(this, tr("Error while loading ROM !"), + tr("The ROM format is not supported.")); + break; + case Loader::ResultStatus::Error: + + default: + QMessageBox::critical(this, tr("Error while loading ROM !"), + tr("Unknown error !")); + break; + } return; } |