From a3c462d211970112c0880a57b9e0fb934ebfbecf Mon Sep 17 00:00:00 2001 From: Nick Briggs Date: Mon, 20 Dec 2021 12:56:11 -0800 Subject: [PATCH] Rename sdl_bitblt_to_texture2 to sdl_bitblt_to_texture_exact to be more descriptive --- src/sdl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sdl.c b/src/sdl.c index 2245c72..3b86d2a 100644 --- a/src/sdl.c +++ b/src/sdl.c @@ -382,7 +382,7 @@ void sdl_bitblt_to_texture(int _x, int _y, int _w, int _h) { } SDL_UnlockTexture(sdl_texture); } -void sdl_bitblt_to_texture2(int _x, int _y, int _w, int _h) { +void sdl_bitblt_to_texture_exact(int _x, int _y, int _w, int _h) { DLword *src = DisplayRegion68k; void *dst; int dstpitchbytes;