diff options
author | Ameer <aj662@drexel.edu> | 2020-06-22 03:15:58 +0200 |
---|---|---|
committer | Ameer <aj662@drexel.edu> | 2020-06-22 03:17:46 +0200 |
commit | 968d631aa59a0a4e51e219eaa143d2b95593c3e7 (patch) | |
tree | 3429728a2848581b869a038a2da6499a2ca36952 /src/input_common/gcadapter/gc_poller.h | |
parent | fix include thread (diff) | |
download | yuzu-968d631aa59a0a4e51e219eaa143d2b95593c3e7.tar yuzu-968d631aa59a0a4e51e219eaa143d2b95593c3e7.tar.gz yuzu-968d631aa59a0a4e51e219eaa143d2b95593c3e7.tar.bz2 yuzu-968d631aa59a0a4e51e219eaa143d2b95593c3e7.tar.lz yuzu-968d631aa59a0a4e51e219eaa143d2b95593c3e7.tar.xz yuzu-968d631aa59a0a4e51e219eaa143d2b95593c3e7.tar.zst yuzu-968d631aa59a0a4e51e219eaa143d2b95593c3e7.zip |
Diffstat (limited to '')
-rw-r--r-- | src/input_common/gcadapter/gc_poller.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input_common/gcadapter/gc_poller.h b/src/input_common/gcadapter/gc_poller.h index 29b8c0b7c..31ff1c123 100644 --- a/src/input_common/gcadapter/gc_poller.h +++ b/src/input_common/gcadapter/gc_poller.h @@ -30,7 +30,7 @@ public: void BeginConfiguration(); void EndConfiguration(); - bool IsPolling() { + bool IsPolling() const { return polling; } @@ -50,7 +50,7 @@ public: void BeginConfiguration(); void EndConfiguration(); - bool IsPolling() { + bool IsPolling() const { return polling; } |