diff --git a/es-app/src/guis/GuiGamelistOptions.cpp b/es-app/src/guis/GuiGamelistOptions.cpp index 1f7882b11..c24bd782a 100644 --- a/es-app/src/guis/GuiGamelistOptions.cpp +++ b/es-app/src/guis/GuiGamelistOptions.cpp @@ -454,7 +454,6 @@ void GuiGamelistOptions::openMetaDataEd() if (file->getType() == FOLDER) { mWindow->pushGui(new GuiMetaDataEd( mWindow, &file->metadata, file->metadata.getMDD(FOLDER_METADATA), p, - Utils::FileSystem::getFileName(file->getPath()), std::bind(&IGameListView::onFileChanged, ViewController::getInstance()->getGameListView(file->getSystem()).get(), file, true), @@ -463,7 +462,6 @@ void GuiGamelistOptions::openMetaDataEd() else { mWindow->pushGui(new GuiMetaDataEd( mWindow, &file->metadata, file->metadata.getMDD(GAME_METADATA), p, - Utils::FileSystem::getFileName(file->getPath()), std::bind(&IGameListView::onFileChanged, ViewController::getInstance()->getGameListView(file->getSystem()).get(), file, true), diff --git a/es-app/src/guis/GuiMetaDataEd.cpp b/es-app/src/guis/GuiMetaDataEd.cpp index 5f342fee1..24cfd0b3f 100644 --- a/es-app/src/guis/GuiMetaDataEd.cpp +++ b/es-app/src/guis/GuiMetaDataEd.cpp @@ -38,7 +38,6 @@ GuiMetaDataEd::GuiMetaDataEd(Window* window, MetaDataList* md, const std::vector& mdd, ScraperSearchParams scraperParams, - const std::string& /*header*/, std::function saveCallback, std::function clearGameFunc, std::function deleteGameFunc) diff --git a/es-app/src/guis/GuiMetaDataEd.h b/es-app/src/guis/GuiMetaDataEd.h index 3ef87e441..fd932858e 100644 --- a/es-app/src/guis/GuiMetaDataEd.h +++ b/es-app/src/guis/GuiMetaDataEd.h @@ -30,7 +30,6 @@ public: MetaDataList* md, const std::vector& mdd, ScraperSearchParams params, - const std::string& header, std::function savedCallback, std::function clearGameFunc, std::function deleteGameFunc);