summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2020-08-28 19:11:14 -0400
committerGravatar Lioncash2020-08-28 19:11:17 -0400
commit4b9b203c09e2cfb3405bb44b7ac266b91b90c837 (patch)
tree3bd9678020eb508957237964965c0e71401f8844
parentMerge pull request #4544 from lioncash/input-sub (diff)
downloadyuzu-4b9b203c09e2cfb3405bb44b7ac266b91b90c837.tar.gz
yuzu-4b9b203c09e2cfb3405bb44b7ac266b91b90c837.tar.xz
yuzu-4b9b203c09e2cfb3405bb44b7ac266b91b90c837.zip
input_common/main: Remove unimplemented prototype
I forgot to remove this in the rebase when removing most of the global variables within the input common codebase.
Diffstat (limited to '')
-rw-r--r--src/input_common/main.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/input_common/main.h b/src/input_common/main.h
index f66308163..ef52983e2 100644
--- a/src/input_common/main.h
+++ b/src/input_common/main.h
@@ -40,9 +40,6 @@ public:
40 */ 40 */
41 virtual Common::ParamPackage GetNextInput() = 0; 41 virtual Common::ParamPackage GetNextInput() = 0;
42}; 42};
43
44// Get all DevicePoller from all backends for a specific device type
45std::vector<std::unique_ptr<DevicePoller>> GetPollers(DeviceType type);
46} // namespace Polling 43} // namespace Polling
47 44
48class GCAnalogFactory; 45class GCAnalogFactory;