From: nethack.allison Date: Mon, 23 Dec 2002 12:59:06 +0000 (+0000) Subject: win32 port update (from ) X-Git-Tag: MOVE2GIT~2284 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=335aeb4c9e86aff2e1432172c668aa9644f168ad;p=nethack win32 port update (from ) Implemented doprev_message in windows port: scroll message window up one line. --- diff --git a/win/win32/mswproc.c b/win/win32/mswproc.c index ec0615e5c..4b2b93549 100644 --- a/win/win32/mswproc.c +++ b/win/win32/mswproc.c @@ -1353,6 +1353,7 @@ doprev_message() int mswin_doprev_message() { logDebug("mswin_doprev_message()\n"); + SendMessage(mswin_hwnd_from_winid(WIN_MESSAGE), WM_VSCROLL, MAKEWPARAM(SB_LINEUP, 0), (LPARAM)NULL); return 0; }