diff options
| author | bunnei <bunneidev@gmail.com> | 2014-08-28 18:07:45 -0400 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2014-08-28 18:07:45 -0400 |
| commit | 06864c93fdf41ed383aadc3a76c40cb4725051b0 (patch) | |
| tree | 5b2f042cae820f5b8ad622731bc378247fac7788 /src/citra_qt/main.cpp | |
| parent | 7122c46937b2382879de4fbee1c3eaf50c9c35b4 (diff) | |
| parent | 6966fdf02578750f31098f23f1f14ebb4f642e2a (diff) | |
Merge pull request #80 from bunnei/fix-latest-libctru
Fixes Citra for the latest changes made to the "refactor" branch of libctru.
- For reference, see: https://github.com/smealum/ctrulib/tree/refactor/libctru
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) 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()); } |
