diff options
| author | Andre Weissflog <floooh@gmail.com> | 2019-09-16 18:55:57 +0200 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2019-09-16 18:55:57 +0200 |
| commit | 4c14c77d7816bd20df2e18a20c5b7125ff0433e4 (patch) | |
| tree | 2fd648b894d31eb9bac8b37289af93ded1675c15 | |
| parent | 33f15422dc1ed88ee2e7d029102322b3510b1ad4 (diff) | |
fix 32-bit widening enum item in sokol_app.h
| -rw-r--r-- | sokol_app.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sokol_app.h b/sokol_app.h index 60ddd648..038957fb 100644 --- a/sokol_app.h +++ b/sokol_app.h @@ -527,7 +527,7 @@ typedef enum sapp_event_type { SAPP_EVENTTYPE_UPDATE_CURSOR, SAPP_EVENTTYPE_QUIT_REQUESTED, _SAPP_EVENTTYPE_NUM, - _SAPP_EVENTTYPE_FORCE_U32 = 0x7FFFFFF + _SAPP_EVENTTYPE_FORCE_U32 = 0x7FFFFFFF } sapp_event_type; /* key codes are the same names and values as GLFW */ |