diff src/lib64gfx.c @ 827:c8beac5313c3

Rename a function.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 17 May 2014 00:29:16 +0300
parents 1e5cf1144f36
children 4f3828914890
line wrap: on
line diff
--- a/src/lib64gfx.c	Fri May 16 22:33:36 2014 +0300
+++ b/src/lib64gfx.c	Sat May 17 00:29:16 2014 +0300
@@ -63,12 +63,12 @@
 
 static BOOL dmCompareAddr16(const Uint8 *buf, const size_t offs, const Uint16 addr)
 {
-    return buf[offs] == DM_GET_ADDR_LO(addr) &&
+    return buf[offs    ] == DM_GET_ADDR_LO(addr) &&
            buf[offs + 1] == DM_GET_ADDR_HI(addr);
 }
 
 
-int dmC64ConvertCSData(DMImage *img,
+int dmC64ConvertCSDataToImage(DMImage *img,
     int xoffs, int yoffs, const Uint8 *buf,
     int width, int height, BOOL multicolor, int *colors)
 {