1
0
mirror of https://github.com/simh/simh.git synced 2026-02-27 01:00:07 +00:00

IMLAC: Add F11 to toggle full screen.

This commit is contained in:
Lars Brinkhoff
2020-07-08 08:28:41 +02:00
parent 6ca7a938ad
commit 4ab34c58af

View File

@@ -226,6 +226,9 @@ kbd_both (uint32 key)
case SIM_KEY_DELETE:
code = 0177;
break;
case SIM_KEY_F11:
vid_set_fullscreen (!vid_is_fullscreen ());
break;
default:
return 0;
}