From 08bb69ff7cc2517cc3ea720b364e1125b0d42c69 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Mon, 16 Jan 2023 21:24:09 -0600 Subject: [PATCH] Fix HScroll packet typedef --- src/Input.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Input.h b/src/Input.h index 3c0681b..6e286f7 100644 --- a/src/Input.h +++ b/src/Input.h @@ -114,6 +114,6 @@ typedef struct _NV_SCROLL_PACKET { typedef struct _SS_HSCROLL_PACKET { NV_INPUT_HEADER header; short scrollAmount; -} SS_HSCROLL_PACKET, *PSS_HSCROLL_EVENT; +} SS_HSCROLL_PACKET, *PSS_HSCROLL_PACKET; #pragma pack(pop)