1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-09-03 01:46:31 -05:00

Loader: Added support for loading raw BIN executables.

- Useful for debugging homebrew

Qt: Updated GUI to support loading .bin files.
This commit is contained in:
bunnei
2014-08-27 00:04:26 -04:00
parent 304999dfeb
commit 6966fdf025
3 changed files with 22 additions and 1 deletions

View File

@@ -150,7 +150,7 @@ void GMainWindow::BootGame(std::string filename)
void GMainWindow::OnMenuLoadFile()
{
QString filename = QFileDialog::getOpenFileName(this, tr("Load file"), QString(), tr("3DS executable (*.elf *.axf *.cci *.cxi)"));
QString filename = QFileDialog::getOpenFileName(this, tr("Load file"), QString(), tr("3DS executable (*.elf *.axf *.bin *.cci *.cxi)"));
if (filename.size())
BootGame(filename.toLatin1().data());
}