summaryrefslogtreecommitdiff
path: root/src/citra_qt/main.cpp
diff options
context:
space:
mode:
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 88f959d9a..64e389f25 100644
--- a/src/citra_qt/main.cpp
+++ b/src/citra_qt/main.cpp
@@ -179,7 +179,7 @@ void GMainWindow::BootGame(std::string filename)
179 179
180void GMainWindow::OnMenuLoadFile() 180void GMainWindow::OnMenuLoadFile()
181{ 181{
182 QString filename = QFileDialog::getOpenFileName(this, tr("Load File"), QString(), tr("3DS executable (*.3dsx *.elf *.axf *.bin *.cci *.cxi)")); 182 QString filename = QFileDialog::getOpenFileName(this, tr("Load File"), QString(), tr("3DS executable (*.3ds *.3dsx *.elf *.axf *.bin *.cci *.cxi)"));
183 if (filename.size()) 183 if (filename.size())
184 BootGame(filename.toLatin1().data()); 184 BootGame(filename.toLatin1().data());
185} 185}