More linting in src/win

This commit is contained in:
Jasmine Iwanek
2023-08-21 20:25:16 -04:00
parent 506d548b38
commit bacf8deae3
22 changed files with 405 additions and 372 deletions

View File

@@ -52,9 +52,12 @@ void
win_mouse_handle(PRAWINPUT raw)
{
RAWMOUSE state = raw->data.mouse;
static int x, delta_x;
static int y, delta_y;
static int b, delta_z;
static int x;
static int delta_x;
static int y;
static int delta_y;
static int b;
static int delta_z;
b = mouse_get_buttons_ex();