summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/main.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-05-09 04:32:06 +0200
committerLioncash <mathew1800@gmail.com>2015-05-09 04:32:06 +0200
commitcb92817fb0be1ac15af0607cd6e52093deb7344e (patch)
tree4696b6e6ffa900c3b000868c016f859eb99e0f45 /src/citra_qt/main.cpp
parentMerge pull request #731 from yuriks/app-info (diff)
parentLoader: Remove .bin file support (diff)
downloadyuzu-cb92817fb0be1ac15af0607cd6e52093deb7344e.tar
yuzu-cb92817fb0be1ac15af0607cd6e52093deb7344e.tar.gz
yuzu-cb92817fb0be1ac15af0607cd6e52093deb7344e.tar.bz2
yuzu-cb92817fb0be1ac15af0607cd6e52093deb7344e.tar.lz
yuzu-cb92817fb0be1ac15af0607cd6e52093deb7344e.tar.xz
yuzu-cb92817fb0be1ac15af0607cd6e52093deb7344e.tar.zst
yuzu-cb92817fb0be1ac15af0607cd6e52093deb7344e.zip
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 d15338f0d..f115c5b6a 100644
--- a/src/citra_qt/main.cpp
+++ b/src/citra_qt/main.cpp
@@ -256,7 +256,7 @@ void GMainWindow::ShutdownGame() {
void GMainWindow::OnMenuLoadFile()
{
- QString filename = QFileDialog::getOpenFileName(this, tr("Load File"), QString(), tr("3DS executable (*.3ds *.3dsx *.elf *.axf *.bin *.cci *.cxi)"));
+ QString filename = QFileDialog::getOpenFileName(this, tr("Load File"), QString(), tr("3DS executable (*.3ds *.3dsx *.elf *.axf *.cci *.cxi)"));
if (filename.size()) {
// Shutdown previous session if the emu thread is still active...
if (emu_thread != nullptr)