[hidvib] Rename vibration variables

This commit is contained in:
Kostas Missos 2018-03-07 15:23:31 +02:00
parent d1cefabd12
commit 00b513ee99

View File

@ -541,7 +541,10 @@ static_assert(sizeof(HidSharedMemory) == 0x40000, "Hid Shared Memory structure h
typedef struct HidVibrationValue
{
float values[4];
float amp_low; ///< Low Band amplitude. 1.0f: Max amplitude.
float freq_low; ///< Low Band frequency in Hz.
float amp_high; ///< High Band amplitude. 1.0f: Max amplitude.
float freq_high; ///< High Band frequency in Hz.
} HidVibrationValue;
static_assert(sizeof(HidVibrationValue) == 0x10, "Hid VibrationValue structure has incorrect size");