diff options
| author | Mike Lothian <mike@fireburn.co.uk> | 2025-09-02 14:59:35 +0100 |
|---|---|---|
| committer | Mike Lothian <mike@fireburn.co.uk> | 2025-09-02 14:59:35 +0100 |
| commit | c4f27bcefb3b0b47b814f9d35c743269fa0f036e (patch) | |
| tree | 11667857c4b540c704ea9629f3c0c0576b6de251 | |
| parent | 1f0178572125d05888774c94665e8f76d9051e17 (diff) | |
android: Fix build with newer Ndk
| -rw-r--r-- | src/input_common/drivers/android.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/drivers/android.h b/src/input_common/drivers/android.h index 03e2b2c98..7f6b8516d 100644 --- a/src/input_common/drivers/android.h +++ b/src/input_common/drivers/android.h @@ -141,7 +141,7 @@ private: backbone_labs_vid, xbox_vid}; /// Queue of vibration request to controllers - Common::SPSCQueue<VibrationRequest> vibration_queue; + Common::SPSCQueue<VibrationRequest, true> vibration_queue; std::jthread vibration_thread; }; |
