diff options
author | german77 <juangerman-13@hotmail.com> | 2021-11-21 22:37:50 -0600 |
---|---|---|
committer | Narr the Reg <juangerman-13@hotmail.com> | 2021-11-24 20:30:29 -0600 |
commit | e64ee99f00c6d2d884113f79785d4aec9fc05db8 (patch) | |
tree | 2474337869fecc94ff5dbc8fb0ed0704a2ea75b7 /src/yuzu/bootmanager.h | |
parent | 746c85b56011b87afb57e37b75953435389fc810 (diff) |
yuzu: Fix TAS from rebase
Diffstat (limited to 'src/yuzu/bootmanager.h')
-rw-r--r-- | src/yuzu/bootmanager.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/yuzu/bootmanager.h b/src/yuzu/bootmanager.h index c8a2c59b4..92297a43b 100644 --- a/src/yuzu/bootmanager.h +++ b/src/yuzu/bootmanager.h @@ -33,15 +33,15 @@ class InputSubsystem; enum class MouseButton; } // namespace InputCommon +namespace InputCommon::TasInput { +enum class TasState; +} // namespace InputCommon::TasInput + namespace VideoCore { enum class LoadCallbackStage; class RendererBase; } // namespace VideoCore -namespace TasInput { -enum class TasState; -} - class EmuThread final : public QThread { Q_OBJECT @@ -245,7 +245,7 @@ private: QWidget* child_widget = nullptr; bool first_frame = false; - TasInput::TasState last_tas_state; + InputCommon::TasInput::TasState last_tas_state; std::array<std::size_t, 16> touch_ids{}; |