From eb3eb9f75d9ed1e12bc472fdd94812e911c92927 Mon Sep 17 00:00:00 2001 From: Yuri Kunde Schlesner Date: Fri, 8 May 2015 23:09:41 -0300 Subject: Loader: Remove .bin file support It is of very limited practical utility currently, and will soon be impossible to support due to more accurate memory map emulation. --- src/citra_qt/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/citra_qt/main.cpp') diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index d15338f0..f115c5b6 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) -- cgit v1.2.3