From d1a8285f818eb7e5c3d6a05709ea21a808490b8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Mon, 19 Mar 2018 19:55:58 +0100 Subject: New upstream version 5.1.0 --- app/wlib/mswlib/mswsplash.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'app/wlib/mswlib/mswsplash.c') diff --git a/app/wlib/mswlib/mswsplash.c b/app/wlib/mswlib/mswsplash.c index bddd081..47df6b7 100644 --- a/app/wlib/mswlib/mswsplash.c +++ b/app/wlib/mswlib/mswsplash.c @@ -1,6 +1,5 @@ -/** +/** \file mswsplash.c * Splash window for Windows - * $header$ */ /* XTrkCad - Model Railroad CAD @@ -60,6 +59,7 @@ PaintBitmap( HWND hWnd, HBITMAP hBmp ) { HDC hdc, hdcMem; RECT rect; + HGDIOBJ oldObject; UpdateWindow( hWnd ); @@ -69,10 +69,10 @@ PaintBitmap( HWND hWnd, HBITMAP hBmp ) /* create a memory dc holding the bitmap */ hdcMem = CreateCompatibleDC( hdc ); - SelectObject( hdcMem, hBmp ); + oldObject = SelectObject( hdcMem, hBmp ); /* - show it in the uppler left corner + show it in the upper left corner the window is created with the size of the bitmap, so there is no need for any special transformation */ @@ -81,6 +81,7 @@ PaintBitmap( HWND hWnd, HBITMAP hBmp ) hdcMem, 0, 0, SRCCOPY ); /* release the DCs that are not needed any more */ + SelectObject(hdcMem, oldObject); DeleteDC( hdcMem ); ReleaseDC( hWnd, hdc ); -- cgit v1.2.3