summaryrefslogtreecommitdiffstats
path: root/src/yuzu/main.h
diff options
context:
space:
mode:
authorlat9nq <22451773+lat9nq@users.noreply.github.com>2021-05-26 02:06:06 +0200
committerlat9nq <22451773+lat9nq@users.noreply.github.com>2021-05-26 02:10:41 +0200
commitcfb9bcbe422e02a5274b5edbefdbfc6c026f185a (patch)
treed16b8f9414ebe503cd757b3fe2f1f37683ca6bab /src/yuzu/main.h
parentcommon: fs: Rework the Common Filesystem interface to make use of std::filesystem (#6270) (diff)
downloadyuzu-cfb9bcbe422e02a5274b5edbefdbfc6c026f185a.tar
yuzu-cfb9bcbe422e02a5274b5edbefdbfc6c026f185a.tar.gz
yuzu-cfb9bcbe422e02a5274b5edbefdbfc6c026f185a.tar.bz2
yuzu-cfb9bcbe422e02a5274b5edbefdbfc6c026f185a.tar.lz
yuzu-cfb9bcbe422e02a5274b5edbefdbfc6c026f185a.tar.xz
yuzu-cfb9bcbe422e02a5274b5edbefdbfc6c026f185a.tar.zst
yuzu-cfb9bcbe422e02a5274b5edbefdbfc6c026f185a.zip
Diffstat (limited to '')
-rw-r--r--src/yuzu/main.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/yuzu/main.h b/src/yuzu/main.h
index b3a5033ce..135681d41 100644
--- a/src/yuzu/main.h
+++ b/src/yuzu/main.h
@@ -236,7 +236,8 @@ private slots:
const std::string& game_path);
void OnTransferableShaderCacheOpenFile(u64 program_id);
void OnGameListRemoveInstalledEntry(u64 program_id, InstalledEntryType type);
- void OnGameListRemoveFile(u64 program_id, GameListRemoveTarget target);
+ void OnGameListRemoveFile(u64 program_id, GameListRemoveTarget target,
+ std::string_view game_path);
void OnGameListDumpRomFS(u64 program_id, const std::string& game_path);
void OnGameListCopyTID(u64 program_id);
void OnGameListNavigateToGamedbEntry(u64 program_id,
@@ -275,7 +276,7 @@ private:
void RemoveUpdateContent(u64 program_id, const QString& entry_type);
void RemoveAddOnContent(u64 program_id, const QString& entry_type);
void RemoveTransferableShaderCache(u64 program_id);
- void RemoveCustomConfiguration(u64 program_id);
+ void RemoveCustomConfiguration(u64 program_id, std::string_view game_path);
std::optional<u64> SelectRomFSDumpTarget(const FileSys::ContentProvider&, u64 program_id);
InstallResult InstallNSPXCI(const QString& filename);
InstallResult InstallNCA(const QString& filename);