From 8b4df520e239a3ee674bc0c82bf730fb7736f368 Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Wed, 12 Apr 2017 12:37:57 -0700 Subject: [PATCH] Qt: Add .srl as an extension for DS ROMs --- CHANGES | 1 + src/platform/qt/Window.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index c6ca0b064..89577ea0a 100644 --- a/CHANGES +++ b/CHANGES @@ -20,6 +20,7 @@ Misc: - Qt: Add .nds files to the extension list in Info.plist - ARM9: Implement STRD/LDRD - DS: Attempt to detect if a game is homebrew + - Qt: Add .srl as an extension for DS ROMs 0.6.0: (Future) Features: diff --git a/src/platform/qt/Window.cpp b/src/platform/qt/Window.cpp index 86b8d2c46..043400926 100644 --- a/src/platform/qt/Window.cpp +++ b/src/platform/qt/Window.cpp @@ -384,6 +384,7 @@ QString Window::getFilters() const { #ifdef M_CORE_DS QStringList dsFormats{ "*.nds", + "*.srl", #if defined(USE_LIBZIP) || defined(USE_ZLIB) "*.zip", #endif