From d38ffbfda632e4916b111c899f4bde20b867251a Mon Sep 17 00:00:00 2001 From: Crayon2000 Date: Sat, 29 Apr 2017 21:42:36 -0400 Subject: [PATCH] Use u8 instead of uint8_t in the VPADData struct This is to be more consistent with other data in the VPADData struct. --- vpad_functions.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vpad_functions.h b/vpad_functions.h index 7a1aec5..483ccbd 100644 --- a/vpad_functions.h +++ b/vpad_functions.h @@ -99,9 +99,9 @@ typedef struct VPADTPData tpdata1; /* Modified touchscreen data 1 */ VPADTPData tpdata2; /* Modified touchscreen data 2 */ char unknown6a[0xa0 - 0x6a]; - uint8_t volume; - uint8_t battery; /* 0 to 6 */ - uint8_t unk_volume; /* One less than volume */ + u8 volume; + u8 battery; /* 0 to 6 */ + u8 unk_volume; /* One less than volume */ char unknowna4[0xac - 0xa4]; } VPADData;