فهرست منبع

Qt: Updated open dialog to include NCCH formats.

bunnei 12 سال پیش
والد
کامیت
1ccdb6a769
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/citra_qt/main.cpp

+ 1 - 1
src/citra_qt/main.cpp

@@ -152,7 +152,7 @@ void GMainWindow::BootGame(const char* filename)
 
 void GMainWindow::OnMenuLoadFile()
 {
-    QString filename = QFileDialog::getOpenFileName(this, tr("Load file"), QString(), tr("3DS homebrew (*.elf *.axf *.dat *.bin)"));
+    QString filename = QFileDialog::getOpenFileName(this, tr("Load file"), QString(), tr("3DS executable (*.elf *.axf *.cci *.cxi)"));
     if (filename.size())
        BootGame(filename.toLatin1().data());
 }