Correct outdated comment

This commit is contained in:
Clownacy 2020-09-14 12:21:40 +01:00
parent 63e4ac9aa9
commit 05b8b607fa

View file

@ -253,7 +253,7 @@ void RenderBackend_UnlockSurface(RenderBackend_Surface *surface, size_t width, s
const unsigned char *src_pixel = surface->pixels;
// Convert the SDL_Surface's colour-keyed pixels to RGBA32
// Convert the colour-keyed pixels to RGBA32
for (size_t y = 0; y < height; ++y)
{
unsigned char *buffer_pointer = &buffer[y * width * 4];