summaryrefslogtreecommitdiff
path: root/src/citra_qt
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2015-05-08 23:09:41 -0300
committerGravatar Yuri Kunde Schlesner2015-05-08 23:09:41 -0300
commiteb3eb9f75d9ed1e12bc472fdd94812e911c92927 (patch)
tree4696b6e6ffa900c3b000868c016f859eb99e0f45 /src/citra_qt
parentMerge pull request #731 from yuriks/app-info (diff)
downloadyuzu-eb3eb9f75d9ed1e12bc472fdd94812e911c92927.tar.gz
yuzu-eb3eb9f75d9ed1e12bc472fdd94812e911c92927.tar.xz
yuzu-eb3eb9f75d9ed1e12bc472fdd94812e911c92927.zip
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.
Diffstat (limited to 'src/citra_qt')
-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() {
256 256
257void GMainWindow::OnMenuLoadFile() 257void GMainWindow::OnMenuLoadFile()
258{ 258{
259 QString filename = QFileDialog::getOpenFileName(this, tr("Load File"), QString(), tr("3DS executable (*.3ds *.3dsx *.elf *.axf *.bin *.cci *.cxi)")); 259 QString filename = QFileDialog::getOpenFileName(this, tr("Load File"), QString(), tr("3DS executable (*.3ds *.3dsx *.elf *.axf *.cci *.cxi)"));
260 if (filename.size()) { 260 if (filename.size()) {
261 // Shutdown previous session if the emu thread is still active... 261 // Shutdown previous session if the emu thread is still active...
262 if (emu_thread != nullptr) 262 if (emu_thread != nullptr)