summaryrefslogtreecommitdiff
path: root/src/citra_qt/main.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2014-05-15 18:54:57 -0400
committerGravatar bunnei2014-05-15 18:54:57 -0400
commit3c240abf10c7f4f47cc6a8ad2ba6ee060abaa96b (patch)
tree10fd696e2e13ad4ade6c499162ab22f555b6694e /src/citra_qt/main.cpp
parentcompletely gutted/refactored threading code to be simpler (diff)
downloadyuzu-3c240abf10c7f4f47cc6a8ad2ba6ee060abaa96b.tar.gz
yuzu-3c240abf10c7f4f47cc6a8ad2ba6ee060abaa96b.tar.xz
yuzu-3c240abf10c7f4f47cc6a8ad2ba6ee060abaa96b.zip
added ability to load AXF files (same as ELF)
Diffstat (limited to 'src/citra_qt/main.cpp')
-rw-r--r--src/citra_qt/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp
index 76e0c68c3..9be982909 100644
--- a/src/citra_qt/main.cpp
+++ b/src/citra_qt/main.cpp
@@ -142,7 +142,7 @@ void GMainWindow::BootGame(const char* filename)
142 142
143void GMainWindow::OnMenuLoadFile() 143void GMainWindow::OnMenuLoadFile()
144{ 144{
145 QString filename = QFileDialog::getOpenFileName(this, tr("Load file"), QString(), tr("3DS homebrew (*.elf *.dat *.bin)")); 145 QString filename = QFileDialog::getOpenFileName(this, tr("Load file"), QString(), tr("3DS homebrew (*.elf *.axf *.dat *.bin)"));
146 if (filename.size()) 146 if (filename.size())
147 BootGame(filename.toLatin1().data()); 147 BootGame(filename.toLatin1().data());
148} 148}