diff options
| author | 2022-10-09 17:46:45 -0400 | |
|---|---|---|
| committer | 2022-10-09 17:46:45 -0400 | |
| commit | c3cae9d99263afd46a1d3205b29cfa62bebd18b3 (patch) | |
| tree | ec1f256daf46822a808a5abbab415bb6137ecd75 /src/common/input.h | |
| parent | Merge pull request #8766 from Kelebek1/regs (diff) | |
| parent | input_common: have an unique vector in callback status (diff) | |
| download | yuzu-c3cae9d99263afd46a1d3205b29cfa62bebd18b3.tar.gz yuzu-c3cae9d99263afd46a1d3205b29cfa62bebd18b3.tar.xz yuzu-c3cae9d99263afd46a1d3205b29cfa62bebd18b3.zip | |
Merge pull request #9043 from german77/vector_data
input_common: have an unique vector in callback status
Diffstat (limited to '')
| -rw-r--r-- | src/common/input.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/input.h b/src/common/input.h index bfa0639f5..b533f3844 100644 --- a/src/common/input.h +++ b/src/common/input.h | |||
| @@ -277,8 +277,9 @@ struct CallbackStatus { | |||
| 277 | BodyColorStatus color_status{}; | 277 | BodyColorStatus color_status{}; |
| 278 | BatteryStatus battery_status{}; | 278 | BatteryStatus battery_status{}; |
| 279 | VibrationStatus vibration_status{}; | 279 | VibrationStatus vibration_status{}; |
| 280 | CameraStatus camera_status{}; | 280 | CameraFormat camera_status{CameraFormat::None}; |
| 281 | NfcStatus nfc_status{}; | 281 | NfcState nfc_status{NfcState::Unknown}; |
| 282 | std::vector<u8> raw_data{}; | ||
| 282 | }; | 283 | }; |
| 283 | 284 | ||
| 284 | // Triggered once every input change | 285 | // Triggered once every input change |