Sam Lantinga
Sam Lantinga
That would be appreciated, it would be great to know what we're running into. Can you log the name, vid and pid of the devices that are caught? Here's a...
I thought @sezero had a suggestion on how to fix this?
> +/* Variadic macros are not supported */ > +#define SDL_ELF_NOTE_DLOPEN(args...) > + Doesn't this syntax mean variadic macros _are_ supported?
> If we don't find a way, I would remove the following lines from `SDL_dlopennote.h`: > > [SDL/include/SDL3/SDL_dlopennote.h](https://github.com/libsdl-org/SDL/blob/281ac6c3bb619f614616a82891c3e39d3f05ceea/include/SDL3/SDL_dlopennote.h#L218-L219) > > Lines 218 to 219 in [281ac6c](/libsdl-org/SDL/commit/281ac6c3bb619f614616a82891c3e39d3f05ceea) > > /* Variadic...
Maybe it's better to just add a 'visited' flag in the font? It's not thread-safe, but avoids lots of allocation and list maintenance.
Can you run the SDL checkkeys test program and show the output along with the keys that you actually pressed?
This looks correct to me, or at least what I would expect knowing how the system works. The keypad keys use the correct scancode and keycode, and they generate the...
SDL gets input through the OS, including the IME, so that's not something that can be changed. I've never seen a keyboard with a KP, key. I'll see if I...
Does this fix the KP, key for you? ```diff diff --git a/src/events/SDL_keysym_to_scancode.c b/src/events/SDL_keysym_to_scancode.c index 8d43ca350..c561d6a84 100644 --- a/src/events/SDL_keysym_to_scancode.c +++ b/src/events/SDL_keysym_to_scancode.c @@ -42,6 +42,7 @@ static const struct { { 0xFF9A,...
Ping? I'd like to get this in for 3.4, but it can bump out of the milestone if necessary.