diff options
| author | Arisotura <thetotalworm@gmail.com> | 2020-06-01 20:36:30 +0200 | 
|---|---|---|
| committer | Arisotura <thetotalworm@gmail.com> | 2020-06-01 20:36:30 +0200 | 
| commit | 43e045357f7d74eecff61b0c8af8068b31e963b3 (patch) | |
| tree | e01071eeb88dd83adaeaa1c8eef9f4e545813e2b /src/frontend/qt_sdl | |
| parent | d7b846619b7f1d392b7b5644ddf856290b44e7e1 (diff) | |
make it able to switch between DS and DSi modes
Diffstat (limited to 'src/frontend/qt_sdl')
| -rw-r--r-- | src/frontend/qt_sdl/EmuSettingsDialog.cpp | 2 | ||||
| -rw-r--r-- | src/frontend/qt_sdl/main.cpp | 45 | 
2 files changed, 35 insertions, 12 deletions
| diff --git a/src/frontend/qt_sdl/EmuSettingsDialog.cpp b/src/frontend/qt_sdl/EmuSettingsDialog.cpp index 7760a88..09faf4e 100644 --- a/src/frontend/qt_sdl/EmuSettingsDialog.cpp +++ b/src/frontend/qt_sdl/EmuSettingsDialog.cpp @@ -49,7 +49,7 @@ EmuSettingsDialog::EmuSettingsDialog(QWidget* parent) : QDialog(parent), ui(new      ui->txtDSiNANDPath->setText(Config::DSiNANDPath);      ui->cbxConsoleType->addItem("DS"); -    ui->cbxConsoleType->addItem("DSi"); +    ui->cbxConsoleType->addItem("DSi (experimental)");      ui->cbxConsoleType->setCurrentIndex(Config::ConsoleType);      ui->chkDirectBoot->setChecked(Config::DirectBoot != 0); diff --git a/src/frontend/qt_sdl/main.cpp b/src/frontend/qt_sdl/main.cpp index ef21bc7..7b3d5cd 100644 --- a/src/frontend/qt_sdl/main.cpp +++ b/src/frontend/qt_sdl/main.cpp @@ -1360,17 +1360,40 @@ QString MainWindow::loadErrorStr(int error)  {      switch (error)      { -    case Frontend::Load_BIOS9Missing: return "DS ARM9 BIOS was not found or could not be accessed. Check your emu settings."; -    case Frontend::Load_BIOS9Bad:     return "DS ARM9 BIOS is not a valid BIOS dump."; - -    case Frontend::Load_BIOS7Missing: return "DS ARM7 BIOS was not found or could not be accessed. Check your emu settings."; -    case Frontend::Load_BIOS7Bad:     return "DS ARM7 BIOS is not a valid BIOS dump."; - -    case Frontend::Load_FirmwareMissing:     return "DS firmware was not found or could not be accessed. Check your emu settings."; -    case Frontend::Load_FirmwareBad:         return "DS firmware is not a valid firmware dump."; -    case Frontend::Load_FirmwareNotBootable: return "DS firmware is not bootable."; - -    case Frontend::Load_ROMLoadError: return "Failed to load the ROM. Make sure the file is accessible and isn't used by another application."; +    case Frontend::Load_BIOS9Missing: +        return "DS ARM9 BIOS was not found or could not be accessed. Check your emu settings."; +    case Frontend::Load_BIOS9Bad: +        return "DS ARM9 BIOS is not a valid BIOS dump."; + +    case Frontend::Load_BIOS7Missing: +        return "DS ARM7 BIOS was not found or could not be accessed. Check your emu settings."; +    case Frontend::Load_BIOS7Bad: +        return "DS ARM7 BIOS is not a valid BIOS dump."; + +    case Frontend::Load_FirmwareMissing: +        return "DS firmware was not found or could not be accessed. Check your emu settings."; +    case Frontend::Load_FirmwareBad: +        return "DS firmware is not a valid firmware dump."; +    case Frontend::Load_FirmwareNotBootable: +        return "DS firmware is not bootable."; + +    case Frontend::Load_DSiBIOS9Missing: +        return "DSi ARM9 BIOS was not found or could not be accessed. Check your emu settings."; +    case Frontend::Load_DSiBIOS9Bad: +        return "DSi ARM9 BIOS is not a valid BIOS dump."; + +    case Frontend::Load_DSiBIOS7Missing: +        return "DSi ARM7 BIOS was not found or could not be accessed. Check your emu settings."; +    case Frontend::Load_DSiBIOS7Bad: +        return "DSi ARM7 BIOS is not a valid BIOS dump."; + +    case Frontend::Load_DSiNANDMissing: +        return "DSi NAND was not found or could not be accessed. Check your emu settings."; +    case Frontend::Load_DSiNANDBad: +        return "DSi NAND is not a valid NAND dump."; + +    case Frontend::Load_ROMLoadError: +        return "Failed to load the ROM. Make sure the file is accessible and isn't used by another application.";      default: return "Unknown error during launch; smack Arisotura.";      } |