فهرست منبع

Add support load 3DS room

Dante38490 11 سال پیش
والد
کامیت
35a085d567
2فایلهای تغییر یافته به همراه3 افزوده شده و 1 حذف شده
  1. 1 1
      src/citra_qt/main.cpp
  2. 2 0
      src/core/loader/loader.cpp

+ 1 - 1
src/citra_qt/main.cpp

@@ -179,7 +179,7 @@ void GMainWindow::BootGame(std::string filename)
 
 
 void GMainWindow::OnMenuLoadFile()
 void GMainWindow::OnMenuLoadFile()
 {
 {
-    QString filename = QFileDialog::getOpenFileName(this, tr("Load File"), QString(), tr("3DS executable (*.3dsx *.elf *.axf *.bin *.cci *.cxi)"));
+    QString filename = QFileDialog::getOpenFileName(this, tr("Load File"), QString(), tr("3DS executable (*.3ds *.3dsx *.elf *.axf *.bin *.cci *.cxi)"));
     if (filename.size())
     if (filename.size())
        BootGame(filename.toLatin1().data());
        BootGame(filename.toLatin1().data());
 }
 }

+ 2 - 0
src/core/loader/loader.cpp

@@ -45,6 +45,8 @@ FileType IdentifyFile(const std::string &filename) {
         return FileType::CCI;
         return FileType::CCI;
     } else if (extension == ".bin") {
     } else if (extension == ".bin") {
         return FileType::BIN;
         return FileType::BIN;
+	} else if (extension == ".3ds") {
+		return FileType::CCI;
     } else if (extension == ".3dsx") {
     } else if (extension == ".3dsx") {
         return FileType::THREEDSX;
         return FileType::THREEDSX;
     }
     }