From 631ce78b4ef04aa7f9e830402487546a88f6fafd Mon Sep 17 00:00:00 2001 From: namark <namark@disroot.org> Date: Sat, 12 Jun 2021 01:15:24 +0400 Subject: [PATCH] You might not be pressing any buttons, who would have known?? --- source/simple/interactive/event.h | 1 + 1 file changed, 1 insertion(+) diff --git a/source/simple/interactive/event.h b/source/simple/interactive/event.h index 198e799..5dc79f2 100644 --- a/source/simple/interactive/event.h +++ b/source/simple/interactive/event.h @@ -36,6 +36,7 @@ namespace simple::interactive enum class mouse_button_mask : uint32_t { + none = 0, left = SDL_BUTTON_LMASK, right = SDL_BUTTON_RMASK, middle = SDL_BUTTON_MMASK, -- GitLab