diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-02-13 19:02:53 -0800 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-02-13 19:03:59 -0800 |
commit | f75e964d494b9870d0991a33f1981a6485696fda (patch) | |
tree | 01acaaa2d083c6f45ebcbe980e6d5a2f0f21a77e /src | |
parent | 1bf449d752f8e68c41321be68b3add7abc7f698f (diff) |
Qt/GameList: Use suffix() to parse the file extension
completeSuffix returns everything after the first period, which means
that a file such as `foo.bar.3ds` would not get recognized.
Diffstat (limited to 'src')
-rw-r--r-- | src/citra_qt/game_list.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/game_list.cpp b/src/citra_qt/game_list.cpp index 28e01d81a..222c82b1c 100644 --- a/src/citra_qt/game_list.cpp +++ b/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) { 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) { |