mirror of
https://github.com/simh/simh.git
synced 2026-01-28 04:48:05 +00:00
Added reporting of the QVSS window focus release key when Video Windows is created
This commit is contained in:
23
sim_video.c
23
sim_video.c
@@ -730,6 +730,17 @@ sprintf(SDLVersion, "SDL Version %d.%d.%d", ver->major, ver->minor, ver->patch);
|
||||
return (const char *)SDLVersion;
|
||||
}
|
||||
|
||||
t_stat vid_set_release_key (FILE* st, UNIT* uptr, int32 val, void* desc)
|
||||
{
|
||||
return SCPE_NOFNC;
|
||||
}
|
||||
|
||||
t_stat vid_show_release_key (FILE* st, UNIT* uptr, int32 val, void* desc)
|
||||
{
|
||||
fprintf (st, "ReleaseKey=Ctrl-Right-Shift");
|
||||
return SCPE_OK;
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
/* Non-implemented versions */
|
||||
@@ -769,4 +780,16 @@ const char *vid_version (void)
|
||||
return "No Video Support";
|
||||
}
|
||||
|
||||
t_stat vid_set_release_key (FILE* st, UNIT* uptr, int32 val, void* desc)
|
||||
{
|
||||
return SCPE_NOFNC;
|
||||
}
|
||||
|
||||
t_stat vid_show_release_key (FILE* st, UNIT* uptr, int32 val, void* desc)
|
||||
{
|
||||
fprintf (st, "no release key");
|
||||
return SCPE_OK;
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user