all repos — mgba @ 388582776e5b7b01ed7ceeb4bcb668b1b2a2b367

mGBA Game Boy Advance Emulator

Qt: Allow loading of ZIPs when using minizip
Jeffrey Pfau jeffrey@endrift.com
Mon, 25 Jan 2016 20:11:55 -0800
commit

388582776e5b7b01ed7ceeb4bcb668b1b2a2b367

parent

4f1788b2e05744fbb6e5ee24af3d02e2ba2304ba

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M src/platform/qt/Window.cppsrc/platform/qt/Window.cpp

@@ -273,7 +273,7 @@

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::replaceROM() { QStringList formats{ "*.gba", -#ifdef USE_LIBZIP +#if defined(USE_LIBZIP) || defined(USE_ZLIB) "*.zip", #endif #ifdef USE_LZMA