all repos — mgba @ 15af266b8c2632db6cfa76d8e96c6975ba6d5b9e

mGBA Game Boy Advance Emulator

Qt: Fix copy/paste error in Library
Vicki Pfau vi@endrift.com
Tue, 20 Jun 2017 21:36:05 -0700
commit

15af266b8c2632db6cfa76d8e96c6975ba6d5b9e

parent

fb7715f6ac8e3e31869ceeef92ab9dd2ae7546b4

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

jump to
M src/platform/qt/library/LibraryController.cppsrc/platform/qt/library/LibraryController.cpp

@@ -24,7 +24,7 @@ }

} void AbstractGameList::removeEntries(QList<LibraryEntryRef> items) { for (LibraryEntryRef o : items) { - addEntry(o); + removeEntry(o); } }