summaryrefslogtreecommitdiffstats
path: root/src/input_common/tas/tas_poller.h
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2021-07-06 03:58:52 +0200
committerMonsterDruide1 <5958456@gmail.com>2021-09-18 23:22:48 +0200
commit33a1d790e8a5f67c73d0eef4a141f936345f104f (patch)
tree16138c61b831ca3a6016fbb31fe183fbc557c7dd /src/input_common/tas/tas_poller.h
parentinput_common/tas: Add swap controller (diff)
downloadyuzu-33a1d790e8a5f67c73d0eef4a141f936345f104f.tar
yuzu-33a1d790e8a5f67c73d0eef4a141f936345f104f.tar.gz
yuzu-33a1d790e8a5f67c73d0eef4a141f936345f104f.tar.bz2
yuzu-33a1d790e8a5f67c73d0eef4a141f936345f104f.tar.lz
yuzu-33a1d790e8a5f67c73d0eef4a141f936345f104f.tar.xz
yuzu-33a1d790e8a5f67c73d0eef4a141f936345f104f.tar.zst
yuzu-33a1d790e8a5f67c73d0eef4a141f936345f104f.zip
Diffstat (limited to 'src/input_common/tas/tas_poller.h')
-rw-r--r--src/input_common/tas/tas_poller.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input_common/tas/tas_poller.h b/src/input_common/tas/tas_poller.h
index 1bc0d173b..09e426cef 100644
--- a/src/input_common/tas/tas_poller.h
+++ b/src/input_common/tas/tas_poller.h
@@ -11,7 +11,7 @@
namespace InputCommon {
/**
- * A button device factory representing a mouse. It receives mouse events and forward them
+ * A button device factory representing a tas bot. It receives tas events and forward them
* to all button devices it created.
*/
class TasButtonFactory final : public Input::Factory<Input::ButtonDevice> {
@@ -29,7 +29,7 @@ private:
std::shared_ptr<TasInput::Tas> tas_input;
};
-/// An analog device factory that creates analog devices from mouse
+/// An analog device factory that creates analog devices from tas
class TasAnalogFactory final : public Input::Factory<Input::AnalogDevice> {
public:
explicit TasAnalogFactory(std::shared_ptr<TasInput::Tas> tas_input_);