aboutsummaryrefslogtreecommitdiff
path: root/graphics/grafx2/files/patch-sdlscreen.c
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/grafx2/files/patch-sdlscreen.c')
-rw-r--r--graphics/grafx2/files/patch-sdlscreen.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/graphics/grafx2/files/patch-sdlscreen.c b/graphics/grafx2/files/patch-sdlscreen.c
deleted file mode 100644
index 6f75258a549a..000000000000
--- a/graphics/grafx2/files/patch-sdlscreen.c
+++ /dev/null
@@ -1,29 +0,0 @@
---- sdlscreen.c.orig 2023-04-11 14:41:38 UTC
-+++ sdlscreen.c
-@@ -373,17 +373,11 @@ byte * Surface_to_bytefield(SDL_Surface *source, byte
- byte *src;
- byte *dest_ptr;
- int y;
-- int remainder;
-
- // Support seulement des images 256 couleurs
- if (source->format->BytesPerPixel != 1)
- return NULL;
-
-- if (source->w & 3)
-- remainder=4-(source->w&3);
-- else
-- remainder=0;
--
- if (dest==NULL)
- dest=(byte *)malloc(source->w*source->h);
-
-@@ -393,7 +387,7 @@ byte * Surface_to_bytefield(SDL_Surface *source, byte
- {
- memcpy(dest_ptr, src,source->w);
- dest_ptr += source->w;
-- src += source->w + remainder;
-+ src += source->pitch;
- }
- return dest;
-