From 6a51e5b795ba8fbaf37707f98fcd03d35cd8b6d8 Mon Sep 17 00:00:00 2001 From: William McBrine Date: Sun, 5 Nov 2006 07:40:06 +0000 Subject: [PATCH] Need to call PDC_set_blink() again after the video mode is changed by resize_term(). --- dos/pdcscrn.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dos/pdcscrn.c b/dos/pdcscrn.c index cb4d0b37..43b49fcb 100644 --- a/dos/pdcscrn.c +++ b/dos/pdcscrn.c @@ -20,7 +20,7 @@ # include #endif -RCSID("$Id: pdcscrn.c,v 1.67 2006/11/05 05:37:40 wmcbrine Exp $"); +RCSID("$Id: pdcscrn.c,v 1.68 2006/11/05 07:40:06 wmcbrine Exp $"); int pdc_adapter; /* screen type */ int pdc_scrnmode; /* default screen mode */ @@ -660,6 +660,8 @@ int PDC_resize_screen(int nlines, int ncols) _set_80x25(); } + PDC_set_blink(COLORS == 8); + return OK; }