diff options
-rw-r--r-- | plugins/ExternalAPI/m_skin_eng.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/ExternalAPI/m_skin_eng.h b/plugins/ExternalAPI/m_skin_eng.h index a25724a485..b0b784ff61 100644 --- a/plugins/ExternalAPI/m_skin_eng.h +++ b/plugins/ExternalAPI/m_skin_eng.h @@ -342,11 +342,10 @@ int __inline SkinEngInvalidateImageFrame(HWND hwnd, CONST RECT * rcUpdate, DWORD }
-int __inline SkinInvalidateFrame(HWND hWnd, CONST RECT* lpRect,BOOL bErase)
+int __inline SkinInvalidateFrame(HWND hWnd, CONST RECT* lpRect)
{
- return SkinEngInvalidateImageFrame(hWnd,lpRect,0,0);
+ return SkinEngInvalidateImageFrame(hWnd, lpRect, 0, 0);
}
-// Alpha channel GDI replacements/helpers
//
// Paints text with correct alpha channel
|