changeset 1949:f8e2728c1b7f

Return DMERR_NOT_SUPPORTED from dmC64ConvertGenericImage2BMP() as it does not do anything yet.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 29 Jun 2018 22:16:51 +0300
parents 5790b52c339e
children a3983da9b8b9
files tools/lib64gfx.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/tools/lib64gfx.c	Fri Jun 29 19:32:50 2018 +0300
+++ b/tools/lib64gfx.c	Fri Jun 29 22:16:51 2018 +0300
@@ -1434,7 +1434,7 @@
     if (dst == NULL || src == NULL || fmt == NULL || spec == NULL)
         return DMERR_NULLPTR;
 
-    return DMERR_OK;
+    return DMERR_NOT_SUPPORTED;
 }