1
0
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:
Mark Pizzolato
2013-06-13 07:00:32 -07:00
parent baba5f8c08
commit a7a8f3d905
5 changed files with 65 additions and 30 deletions

View File

@@ -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