changeset 1368:95e416830490

Use dmPrint() instead of dmMsg() for the info dumps.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 23 Sep 2017 01:26:31 +0300
parents fe1e3a756685
children 3a94c0e8297f
files tools/view64.c
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/tools/view64.c	Sat Sep 23 01:24:51 2017 +0300
+++ b/tools/view64.c	Sat Sep 23 01:26:31 2017 +0300
@@ -162,7 +162,7 @@
         );
 
 
-    dmMsg(0,
+    dmPrint(0,
         "Type                : %s\n",
         typeStr);
 
@@ -176,7 +176,7 @@
             case D64_FLI_8BANK: tmps = "8 bank"; break;
             default: tmps = "ERROR"; break;
         }
-        dmMsg(0,
+        dmPrint(0,
             "FLI type            : %s\n",
             tmps);
     }
@@ -190,7 +190,7 @@
             case D64_ILACE_RES: tmps = "resolution"; break;
             default: tmps = "ERROR"; break;
         }
-        dmMsg(0,
+        dmPrint(0,
             "Interlace type      : %s\n"
             "Interlace banks     : %d, %d\n",
             tmps,
@@ -198,7 +198,7 @@
             img->laceBank2);
     }
 
-    dmMsg(0,
+    dmPrint(0,
         "Width x Height      : %d x %d\n"
         "CHwidth x CHheight  : %d x %d\n",
         img->width, img->height,
@@ -259,7 +259,7 @@
 
     if (forced == NULL && fmt != NULL)
     {
-        dmMsg(0,"Probed %s format image, type %d, %s\n",
+        dmPrint(0, "Probed %s format image, type %d, %s\n",
             fmt->name, fmt->type, fmt->fext);
     }