diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-01-10 15:26:36 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-10 15:26:36 -0500 |
commit | 9f974ea8189c255ff3ab8fcad6ae310a5e50d296 (patch) | |
tree | 865bd949208a7dad04a4eb45e9f353588df589d6 /src/input_common/drivers/tas_input.h | |
parent | fda0e7e9899e1a023f3dea76079ffa9cce0e5d89 (diff) | |
parent | 115bf204484d5ac058e7edaf5139974b22aa6f7e (diff) |
Merge pull request #9565 from MonsterDruide1/tas-multiplayer-lengths
TAS: Show all script lengths for multiplayer
Diffstat (limited to 'src/input_common/drivers/tas_input.h')
-rw-r--r-- | src/input_common/drivers/tas_input.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/drivers/tas_input.h b/src/input_common/drivers/tas_input.h index 38a27a230..5be66d142 100644 --- a/src/input_common/drivers/tas_input.h +++ b/src/input_common/drivers/tas_input.h @@ -124,7 +124,7 @@ public: * Current playback progress ; * Total length of script file currently loaded or being recorded */ - std::tuple<TasState, size_t, size_t> GetStatus() const; + std::tuple<TasState, size_t, std::array<size_t, PLAYER_NUMBER>> GetStatus() const; private: enum class TasAxis : u8; |