fix some compile errors

This commit is contained in:
Amy Bowersox
2019-12-11 10:54:09 -07:00
parent 379bcab885
commit 4745d51361
3 changed files with 5 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
#include <string.h>
#include "bitmap.h"
PBITMAP BMP_Create(INT32 width, INT32 height, const VOID *bits)
PBITMAP BMP_Create(INT32 width, INT32 height, const void *bits)
{
PBITMAP rc;
UINT32 tot_size = sizeof(BITMAP) + (width * height * sizeof(UINT16));