diff options
| author | 2014-12-08 19:16:40 -0500 | |
|---|---|---|
| committer | 2014-12-08 19:16:40 -0500 | |
| commit | ff560a942839e327b37e50a0ebe6e6d16adc45a0 (patch) | |
| tree | 2f92f607b8c59cb63203c4e1bdd68d9386bbfc92 /src/citra_qt/main.cpp | |
| parent | Merge pull request #264 from Subv/files (diff) | |
| parent | Loader: Add 3DSX support (diff) | |
| download | yuzu-ff560a942839e327b37e50a0ebe6e6d16adc45a0.tar.gz yuzu-ff560a942839e327b37e50a0ebe6e6d16adc45a0.tar.xz yuzu-ff560a942839e327b37e50a0ebe6e6d16adc45a0.zip | |
Merge pull request #259 from ichfly/master
Loader: Add 3DSX support
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 430a4ece4..0701decef 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp | |||
| @@ -164,7 +164,7 @@ void GMainWindow::BootGame(std::string filename) | |||
| 164 | 164 | ||
| 165 | void GMainWindow::OnMenuLoadFile() | 165 | void GMainWindow::OnMenuLoadFile() |
| 166 | { | 166 | { |
| 167 | QString filename = QFileDialog::getOpenFileName(this, tr("Load file"), QString(), tr("3DS executable (*.elf *.axf *.bin *.cci *.cxi)")); | 167 | QString filename = QFileDialog::getOpenFileName(this, tr("Load file"), QString(), tr("3DS executable (*.3dsx *.elf *.axf *.bin *.cci *.cxi)")); |
| 168 | if (filename.size()) | 168 | if (filename.size()) |
| 169 | BootGame(filename.toLatin1().data()); | 169 | BootGame(filename.toLatin1().data()); |
| 170 | } | 170 | } |