Bill Gray
Bill Gray
We do compile the OS/2 and DOS ports with 8-bit characters, so I don't think we've really left this completely unchecked. Theoretically speaking, at least, we could have compiles with...
Just investigated this again. I had pointed out above that in some cases, we can't tell the difference between Backspace and Ctrl-H. With some terminal settings, Backspace returns the same...
An interesting thought. I gotta admit, though, that I'm now leaning toward _not_ adding another extension for this purpose. Consider : We'd like to distinguish Ctrl-I from Tab, Ctrl-M from...
Hmmm... turns out to be easier to handle than I thought; I've implemented a solution in commit fac87bd9389fdb2851a9ecd239ebe245d50f06b8. The problems arise after displaying a fullwidth character : we may (or...
Current status is : The framebuffer/DRM port has no mouse events at all. I've examined a few possible ways of reading the mouse from the console, including GPM, the `uinput`...
@GitMensch - I realize this is marked as 'draft', but it looks good to me. Do you want to do more with it, or shall we pull this? If you...
Yup, it's a separate issue. (One I'm not seeing, which may be yet another SDL 2.x.x variation; there seem to be a lot of them. Your fix looks good, though.)
I was going to say this won't help with SDLn. On further investigation, though... it appears this change is simpler than I thought. It's looking to see if we can...
Yes, there are definitely likely to be differences between versions, especially with these very short arcs. For one thing, I've occasionally had to tweak the "evaluate orbit likelihood" function a...
`PDC_MOUSE_POSITION` and `MOUSE_POS_REPORT` don't actually do anything. Both are #defined in `curses.h` and never used after that; pay no attention to them. Use `MOUSE_MOVED` and `PDC_MOUSE_MOVED`. You also have to...