diff options
author | Mario <mariodavo.20@gmail.com> | 2023-08-26 21:19:00 -0400 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-08-26 22:20:19 -0400 |
commit | 5464423667dedc0f09d48f85fc7871a3e56127a4 (patch) | |
tree | a981bb0c3f41050a476e791f4440bc4eae9e1ebf /src/yuzu/game_list.h | |
parent | 6c4abd23be375afda850661cdf164b65e52f8cb8 (diff) |
yuzu-qt: Track play time
Diffstat (limited to 'src/yuzu/game_list.h')
-rw-r--r-- | src/yuzu/game_list.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu/game_list.h b/src/yuzu/game_list.h index 6c2f75e53..cde6f1e1f 100644 --- a/src/yuzu/game_list.h +++ b/src/yuzu/game_list.h @@ -74,6 +74,7 @@ public: COLUMN_ADD_ONS, COLUMN_FILE_TYPE, COLUMN_SIZE, + COLUMN_PLAY_TIME, COLUMN_COUNT, // Number of columns }; @@ -112,6 +113,7 @@ signals: void RemoveInstalledEntryRequested(u64 program_id, InstalledEntryType type); void RemoveFileRequested(u64 program_id, GameListRemoveTarget target, const std::string& game_path); + void RemovePlayTimeRequested(u64 program_id); void DumpRomFSRequested(u64 program_id, const std::string& game_path, DumpRomFSTarget target); void CopyTIDRequested(u64 program_id); void CreateShortcut(u64 program_id, const std::string& game_path, |