diff options
author | Lioncash <mathew1800@gmail.com> | 2019-05-28 21:42:50 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-05-28 22:28:44 -0400 |
commit | 84a8fb9264b5018d97e487f3e473b5ebb43b48f1 (patch) | |
tree | e8870936df26b17ea3008978489ceb238fc8683a /src/yuzu/main.cpp | |
parent | b1a4ab2ccc82940f9b1cbf18027ce79a3c23fede (diff) |
core/loader: Remove LoadKernelSystemMode
This is a hold-over from Citra and doesn't apply to yuzu.
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index cef2cc1ae..29beaa3ba 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -850,11 +850,6 @@ bool GMainWindow::LoadROM(const QString& filename) { QMessageBox::critical(this, tr("Error while loading ROM!"), tr("The ROM format is not supported.")); break; - case Core::System::ResultStatus::ErrorSystemMode: - LOG_CRITICAL(Frontend, "Failed to load ROM!"); - QMessageBox::critical(this, tr("Error while loading ROM!"), - tr("Could not determine the system mode.")); - break; case Core::System::ResultStatus::ErrorVideoCore: QMessageBox::critical( this, tr("An error occurred initializing the video core."), |