diff options
| author | 2014-08-27 00:04:26 -0400 | |
|---|---|---|
| committer | 2014-08-30 23:23:33 -0400 | |
| commit | 738b88293ca82a7823d79d0406ac38019b7dec9c (patch) | |
| tree | 5b2f042cae820f5b8ad622731bc378247fac7788 /src/citra_qt/main.cpp | |
| parent | Threading: Fix thread starting to execute first instruction correctly. (diff) | |
| download | yuzu-738b88293ca82a7823d79d0406ac38019b7dec9c.tar.gz yuzu-738b88293ca82a7823d79d0406ac38019b7dec9c.tar.xz yuzu-738b88293ca82a7823d79d0406ac38019b7dec9c.zip | |
Loader: Added support for loading raw BIN executables.
- Useful for debugging homebrew
Qt: Updated GUI to support loading .bin files.
Diffstat (limited to 'src/citra_qt/main.cpp')
| -rw-r--r-- | src/citra_qt/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index a6b87f781..1bf9bc53c 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp | |||
| @@ -150,7 +150,7 @@ void GMainWindow::BootGame(std::string filename) | |||
| 150 | 150 | ||
| 151 | void GMainWindow::OnMenuLoadFile() | 151 | void GMainWindow::OnMenuLoadFile() |
| 152 | { | 152 | { |
| 153 | QString filename = QFileDialog::getOpenFileName(this, tr("Load file"), QString(), tr("3DS executable (*.elf *.axf *.cci *.cxi)")); | 153 | QString filename = QFileDialog::getOpenFileName(this, tr("Load file"), QString(), tr("3DS executable (*.elf *.axf *.bin *.cci *.cxi)")); |
| 154 | if (filename.size()) | 154 | if (filename.size()) |
| 155 | BootGame(filename.toLatin1().data()); | 155 | BootGame(filename.toLatin1().data()); |
| 156 | } | 156 | } |