https://git.reactos.org/?p=reactos.git;a=commitdiff;h=ad21227ac8babb9b5f45c83e0d26a3c766b38657

commit ad21227ac8babb9b5f45c83e0d26a3c766b38657
Author:     Serge Gautherie <[email protected]>
AuthorDate: Mon Dec 2 19:21:39 2019 +0100
Commit:     Hermès Bélusca-Maïto <[email protected]>
CommitDate: Tue Dec 3 02:10:37 2019 +0100

    [NTOS:PO] PopShutdownHandler(): Fully screen-center images. Addendum to 
55aed4f8.
    CORE-16342
---
 ntoskrnl/po/poshtdwn.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/ntoskrnl/po/poshtdwn.c b/ntoskrnl/po/poshtdwn.c
index aca63dae7ee..23071faad28 100644
--- a/ntoskrnl/po/poshtdwn.c
+++ b/ntoskrnl/po/poshtdwn.c
@@ -168,8 +168,9 @@ PopShutdownHandler(VOID)
         Logo2 = InbvGetResourceAddress(IDB_LOGO_DEFAULT);
         if ((Logo1) && (Logo2))
         {
-            InbvBitBlt(Logo1, 211, 352);
-            InbvBitBlt(Logo2, 222, 111);
+            /* 16px space between logo and message */
+            InbvBitBlt(Logo1, 213, 354);
+            InbvBitBlt(Logo2, 225, 114);
         }
     }
     else

Reply via email to