diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2022-10-09 23:46:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-09 23:46:45 +0200 |
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 yuzu-c3cae9d99263afd46a1d3205b29cfa62bebd18b3.tar.gz yuzu-c3cae9d99263afd46a1d3205b29cfa62bebd18b3.tar.bz2 yuzu-c3cae9d99263afd46a1d3205b29cfa62bebd18b3.tar.lz yuzu-c3cae9d99263afd46a1d3205b29cfa62bebd18b3.tar.xz yuzu-c3cae9d99263afd46a1d3205b29cfa62bebd18b3.tar.zst yuzu-c3cae9d99263afd46a1d3205b29cfa62bebd18b3.zip |
Diffstat (limited to 'src/common/input.h')
-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 { BodyColorStatus color_status{}; BatteryStatus battery_status{}; VibrationStatus vibration_status{}; - CameraStatus camera_status{}; - NfcStatus nfc_status{}; + CameraFormat camera_status{CameraFormat::None}; + NfcState nfc_status{NfcState::Unknown}; + std::vector<u8> raw_data{}; }; // Triggered once every input change |