[hidvib] Rename vibration variables (#62)

This commit is contained in:
Kostas Missos 2018-03-07 19:23:43 +02:00 committed by yellows8
parent d1cefabd12
commit e3666b4705

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");