From 42d9af1b233ed0092caaa7f52f6fe85bafafda31 Mon Sep 17 00:00:00 2001 From: nhmall Date: Sat, 15 Dec 2018 23:11:52 -0500 Subject: [PATCH] don't show stubs in window port valid list --- sys/winnt/stubs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/winnt/stubs.c b/sys/winnt/stubs.c index af10a7fc0..ab6b52271 100644 --- a/sys/winnt/stubs.c +++ b/sys/winnt/stubs.c @@ -11,10 +11,10 @@ #endif int GUILaunched; -struct window_procs mswin_procs = { "guistubs" }; +struct window_procs mswin_procs = { "-guistubs" }; #ifdef QT_GRAPHICS -struct window_procs Qt_procs = { "guistubs" }; +struct window_procs Qt_procs = { "-guistubs" }; int qt_tilewidth, qt_tileheight, qt_fontsize, qt_compact_mode; #endif void @@ -54,7 +54,7 @@ char *argv[]; HANDLE hConIn; HANDLE hConOut; int GUILaunched; -struct window_procs tty_procs = { "ttystubs" }; +struct window_procs tty_procs = { "-ttystubs" }; void win_tty_init(dir) -- 2.40.0