Shut up some more Clang warnings

This commit is contained in:
Clownacy 2019-10-29 12:20:05 +00:00
parent 85890ef1e6
commit 011b79a051
3 changed files with 9 additions and 3 deletions

View file

@ -464,12 +464,14 @@ void Backend_FreeSurface(Backend_Surface *surface)
BOOL Backend_IsSurfaceLost(Backend_Surface *surface)
{
(void)surface;
return FALSE;
}
void Backend_RestoreSurface(Backend_Surface *surface)
{
(void)surface;
}
unsigned char* Backend_LockSurface(Backend_Surface *surface, unsigned int *pitch)

View file

@ -95,12 +95,14 @@ void Backend_FreeSurface(Backend_Surface *surface)
BOOL Backend_IsSurfaceLost(Backend_Surface *surface)
{
(void)surface;
return FALSE;
}
void Backend_RestoreSurface(Backend_Surface *surface)
{
(void)surface;
}
unsigned char* Backend_LockSurface(Backend_Surface *surface, unsigned int *pitch)

View file

@ -102,12 +102,14 @@ void Backend_FreeSurface(Backend_Surface *surface)
BOOL Backend_IsSurfaceLost(Backend_Surface *surface)
{
(void)surface;
return FALSE;
}
void Backend_RestoreSurface(Backend_Surface *surface)
{
(void)surface;
}
unsigned char* Backend_LockSurface(Backend_Surface *surface, unsigned int *pitch)