msvfw32: Replace const pointer parameter with correct pointer to const.
This commit is contained in:
parent
80103832c8
commit
59bc3545fb
|
@ -53,7 +53,7 @@ typedef struct tagWINE_HDD {
|
|||
struct tagWINE_HDD* next;
|
||||
} WINE_HDD;
|
||||
|
||||
static int num_colours(const LPBITMAPINFOHEADER lpbi)
|
||||
static int num_colours(const BITMAPINFOHEADER *lpbi)
|
||||
{
|
||||
if(lpbi->biClrUsed)
|
||||
return lpbi->biClrUsed;
|
||||
|
|
Loading…
Reference in New Issue