Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/LCDUI/LCDBitmap.cpp')
-rw-r--r--src/ui/LCDUI/LCDBitmap.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/LCDUI/LCDBitmap.cpp b/src/ui/LCDUI/LCDBitmap.cpp
index 559a88a5b..eacdf64b1 100644
--- a/src/ui/LCDUI/LCDBitmap.cpp
+++ b/src/ui/LCDUI/LCDBitmap.cpp
@@ -3,7 +3,7 @@
// LCDBitmap.cpp
//
// The CLCDBitmap class draws bitmaps onto the LCD.
-//
+//
// Logitech LCD SDK
//
// Copyright 2005 Logitech Inc.
@@ -74,9 +74,9 @@ void CLCDBitmap::OnDraw(CLCDGfx &rGfx)
{
HDC hCompatibleDC = CreateCompatibleDC(rGfx.GetHDC());
HBITMAP hOldBitmap = (HBITMAP)SelectObject(hCompatibleDC, m_hBitmap);
-
+
BitBlt(rGfx.GetHDC(), 0, 0, m_Size.cx, m_Size.cy, hCompatibleDC, m_ptLogical.x, m_ptLogical.y, m_dwROP);
-
+
// restores
SelectObject(hCompatibleDC, hOldBitmap);
DeleteDC(hCompatibleDC);