diff options
| author | 2014-06-27 16:19:49 -0400 | |
|---|---|---|
| committer | 2014-07-04 20:37:48 -0400 | |
| commit | 1ccdb6a76903f3948435a13ca20795baf8801435 (patch) | |
| tree | 210a7443997cc39a5094ce34fc8fb8f3207bc62f /src | |
| parent | FileSys: Added preliminary support for applications reading the RomFS archive. (diff) | |
| download | yuzu-1ccdb6a76903f3948435a13ca20795baf8801435.tar.gz yuzu-1ccdb6a76903f3948435a13ca20795baf8801435.tar.xz yuzu-1ccdb6a76903f3948435a13ca20795baf8801435.zip | |
Qt: Updated open dialog to include NCCH formats.
Diffstat (limited to 'src')
| -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 0bcce7d16..997e82cc9 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp | |||
| @@ -152,7 +152,7 @@ void GMainWindow::BootGame(const char* filename) | |||
| 152 | 152 | ||
| 153 | void GMainWindow::OnMenuLoadFile() | 153 | void GMainWindow::OnMenuLoadFile() |
| 154 | { | 154 | { |
| 155 | QString filename = QFileDialog::getOpenFileName(this, tr("Load file"), QString(), tr("3DS homebrew (*.elf *.axf *.dat *.bin)")); | 155 | QString filename = QFileDialog::getOpenFileName(this, tr("Load file"), QString(), tr("3DS executable (*.elf *.axf *.cci *.cxi)")); |
| 156 | if (filename.size()) | 156 | if (filename.size()) |
| 157 | BootGame(filename.toLatin1().data()); | 157 | BootGame(filename.toLatin1().data()); |
| 158 | } | 158 | } |