summaryrefslogtreecommitdiff
path: root/src/yuzu/main.h
diff options
context:
space:
mode:
authorMonsterDruide1 <5958456@gmail.com>2022-01-21 19:21:47 +0100
committerMonsterDruide1 <5958456@gmail.com>2023-01-07 21:15:37 +0100
commit115bf204484d5ac058e7edaf5139974b22aa6f7e (patch)
treebe57fd8bcdb8dbcdce0ef7aec9d95d92ebabc402 /src/yuzu/main.h
parent5bcbb8de45540bee7a64b7b1867f61c57f51ab88 (diff)
TAS: Show all script lengths for multiplayer
Diffstat (limited to 'src/yuzu/main.h')
-rw-r--r--src/yuzu/main.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/yuzu/main.h b/src/yuzu/main.h
index f25ce65a8..0f61abc7a 100644
--- a/src/yuzu/main.h
+++ b/src/yuzu/main.h
@@ -12,6 +12,7 @@
#include "common/announce_multiplayer_room.h"
#include "common/common_types.h"
+#include "input_common/drivers/tas_input.h"
#include "yuzu/compatibility_list.h"
#include "yuzu/hotkeys.h"
@@ -266,6 +267,9 @@ private:
void changeEvent(QEvent* event) override;
void closeEvent(QCloseEvent* event) override;
+ std::string CreateTASFramesString(
+ std::array<size_t, InputCommon::TasInput::PLAYER_NUMBER> frames) const;
+
#ifdef __unix__
void SetupSigInterrupts();
static void HandleSigInterrupt(int);