Преглед на файлове

Merge pull request #2566 from yuriks/file-extension-suffix

Qt/GameList: Use suffix() to parse the file extension
Weiyi Wang преди 9 години
родител
ревизия
fae1efaad4
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      src/citra_qt/game_list.cpp

+ 1 - 1
src/citra_qt/game_list.cpp

@@ -137,7 +137,7 @@ const QStringList GameList::supported_file_extensions = {"3ds", "3dsx", "elf", "
 
 
 static bool HasSupportedFileExtension(const std::string& file_name) {
 static bool HasSupportedFileExtension(const std::string& file_name) {
     QFileInfo file = QFileInfo(file_name.c_str());
     QFileInfo file = QFileInfo(file_name.c_str());
-    return GameList::supported_file_extensions.contains(file.completeSuffix(), Qt::CaseInsensitive);
+    return GameList::supported_file_extensions.contains(file.suffix(), Qt::CaseInsensitive);
 }
 }
 
 
 void GameListWorker::AddFstEntriesToGameList(const std::string& dir_path, unsigned int recursion) {
 void GameListWorker::AddFstEntriesToGameList(const std::string& dir_path, unsigned int recursion) {