diff options
| author | 2014-07-04 21:58:08 -0400 | |
|---|---|---|
| committer | 2014-07-04 21:58:08 -0400 | |
| commit | ad1adb2f9270cc48bfbfd8b12ad1dac162c48e39 (patch) | |
| tree | 6bb6ab148504beaacdfa02ed1dd069e3a5f61427 /src/citra_qt/main.cpp | |
| parent | Merge pull request #22 from bunnei/loader-improvements (diff) | |
| parent | NCCH: Updated ExeFS memory allocation to be safer. (diff) | |
| download | yuzu-ad1adb2f9270cc48bfbfd8b12ad1dac162c48e39.tar.gz yuzu-ad1adb2f9270cc48bfbfd8b12ad1dac162c48e39.tar.xz yuzu-ad1adb2f9270cc48bfbfd8b12ad1dac162c48e39.zip | |
Merge pull request #26 from bunnei/romfs-archive
Adds preliminary RomFS archive 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 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 | } |