From 8266db337268af8465bbfde57f625de8b3d2278a Mon Sep 17 00:00:00 2001 From: Clownacy Date: Fri, 3 Apr 2020 02:08:19 +0100 Subject: [PATCH] Shut-up another warning --- src/Backends/Rendering/Software.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Backends/Rendering/Software.cpp b/src/Backends/Rendering/Software.cpp index fd9bf02a..5d5f32cf 100644 --- a/src/Backends/Rendering/Software.cpp +++ b/src/Backends/Rendering/Software.cpp @@ -306,8 +306,6 @@ Backend_Glyph* Backend_LoadGlyph(const unsigned char *pixels, unsigned int width return NULL; } - unsigned char *destination_pointer = glyph->pixels; - for (unsigned int y = 0; y < height; ++y) memcpy(&glyph->pixels[y * width], &pixels[y * pitch], width);