From 55aed4f8fa919ce3b210e14bff7aec1919202848 Mon Sep 17 00:00:00 2001 From: Katayama Hirofumi MZ Date: Mon, 2 Dec 2019 16:55:02 +0900 Subject: [PATCH] [NTOSKRNL][INBV] Fix IDB_SHUTDOWN_MSG position Make "shutdown.bmp" (IDB_SHUTDOWN_MSG: 213x11px) horizontally centered. --- ntoskrnl/po/poshtdwn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ntoskrnl/po/poshtdwn.c b/ntoskrnl/po/poshtdwn.c index 17adbc2a415..aca63dae7ee 100644 --- a/ntoskrnl/po/poshtdwn.c +++ b/ntoskrnl/po/poshtdwn.c @@ -168,7 +168,7 @@ PopShutdownHandler(VOID) Logo2 = InbvGetResourceAddress(IDB_LOGO_DEFAULT); if ((Logo1) && (Logo2)) { - InbvBitBlt(Logo1, 220, 352); + InbvBitBlt(Logo1, 211, 352); InbvBitBlt(Logo2, 222, 111); } }