fork of PCE focusing on macplus, supporting DaynaPort SCSI network emulation
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

sdl2: Don't pass key down events when mouse isn't grabbed

Continue passing up events to allow the OS to see that the
grab-exiting keys (Ctrl+Alt) were released.

+1 -1
+1 -1
src/drivers/video/sdl2.c
··· 411 411 { 412 412 pce_key_t pcekey; 413 413 414 - if (sdl->ignore_keys) { 414 + if (sdl->ignore_keys || !sdl->grab) { 415 415 return; 416 416 } 417 417