1
0
mirror of https://github.com/simh/simh.git synced 2026-01-26 12:02:14 +00:00

VIDEO: Add window title to vid_open.

This commit is contained in:
Mark Pizzolato
2016-01-28 11:29:53 -08:00
parent 00e8c80c7b
commit 4f3dd08314
3 changed files with 12 additions and 7 deletions

View File

@@ -1023,7 +1023,7 @@ if (dptr->flags & DEV_DIS) {
}
if (!vid_active) {
r = vid_open (dptr, VC_XSIZE, VC_YSIZE, vc_input_captured ? SIM_VID_INPUTCAPTURED : 0);/* display size & capture mode */
r = vid_open (dptr, NULL, VC_XSIZE, VC_YSIZE, vc_input_captured ? SIM_VID_INPUTCAPTURED : 0);/* display size & capture mode */
if (r != SCPE_OK)
return r;
vc_buf = (uint32 *) calloc (VC_MEMSIZE, sizeof (uint32));