ref: 4f2f6ad4f4de59813fd35adaf8c2d1930b3d5653
parent: 8266db337268af8465bbfde57f625de8b3d2278a
author: Clownacy <Clownacy@users.noreply.github.com>
date: Thu Apr 2 22:10:28 EDT 2020
More warnings
--- a/src/Backends/Rendering/SDLSurface.cpp
+++ b/src/Backends/Rendering/SDLSurface.cpp
@@ -130,6 +130,9 @@
unsigned char* Backend_LockSurface(Backend_Surface *surface, unsigned int *pitch, unsigned int width, unsigned int height)
{
+ (void)width;
+ (void)height;
+
if (surface == NULL)
return NULL;
@@ -140,6 +143,8 @@
void Backend_UnlockSurface(Backend_Surface *surface, unsigned int width, unsigned int height)
{
(void)surface;
+ (void)width;
+ (void)height;
}
void Backend_Blit(Backend_Surface *source_surface, const RECT *rect, Backend_Surface *destination_surface, long x, long y, BOOL colour_key)