keysym attribute removed from SDL3 cause SDL3 backend build to fail #7727
adrian-purser
started this conversation in
Build/Link/Run/Fonts issues ONLY!
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
A recent commit to SDL, "Removed SDL_Keysym", causes the SDL3 backend build to fail.
The notes in the SDL micration readme are as follows -
The keysym field of key events has been removed to remove one level of indirection, and
sym
has been renamedkey
.Code that looked like this:
now looks like this:
I also found that I had to change
event.key.keysym.scancode
toevent.key.scancode
The changes in the SDL3 backend at line 346 now look like this in my fork -
Beta Was this translation helpful? Give feedback.
All reactions