Qt: Allow loading of ZIPs when using minizip

This commit is contained in:
Jeffrey Pfau 2016-01-25 20:11:55 -08:00
parent 4f1788b2e0
commit 388582776e
1 changed files with 2 additions and 2 deletions

View File

@ -273,7 +273,7 @@ void Window::saveConfig() {
void Window::selectROM() {
QStringList formats{
"*.gba",
#ifdef USE_LIBZIP
#if defined(USE_LIBZIP) || defined(USE_ZLIB)
"*.zip",
#endif
#ifdef USE_LZMA
@ -293,7 +293,7 @@ void Window::selectROM() {
void Window::replaceROM() {
QStringList formats{
"*.gba",
#ifdef USE_LIBZIP
#if defined(USE_LIBZIP) || defined(USE_ZLIB)
"*.zip",
#endif
#ifdef USE_LZMA