From a365686956297efad1bc4fa7964ccadbf0be9353 Mon Sep 17 00:00:00 2001 From: Michael Maltese Date: Fri, 30 Jun 2017 02:26:47 -0700 Subject: [PATCH] GameList: fix Decompress slot typo There is no such `DecompressISO` slot. --- Source/Core/DolphinQt2/GameList/GameList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt2/GameList/GameList.cpp b/Source/Core/DolphinQt2/GameList/GameList.cpp index 64d659f5cd..f1ddde2b07 100644 --- a/Source/Core/DolphinQt2/GameList/GameList.cpp +++ b/Source/Core/DolphinQt2/GameList/GameList.cpp @@ -157,7 +157,7 @@ void GameList::ShowContextMenu(const QPoint&) const auto blob_type = GameFile(game).GetBlobType(); if (blob_type == DiscIO::BlobType::GCZ) - menu->addAction(tr("Decompress ISO"), this, SLOT(DecompressISO())); + menu->addAction(tr("Decompress ISO"), this, SLOT(CompressISO())); else if (blob_type == DiscIO::BlobType::PLAIN) menu->addAction(tr("Compress ISO"), this, SLOT(CompressISO()));