diff tools/viewmod.c @ 796:97ecc0a9c21f

Silence some "probing".
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 18 Oct 2013 19:47:30 +0300
parents 926e3900119c
children f066e9dccf29
line wrap: on
line diff
--- a/tools/viewmod.c	Fri Oct 18 19:40:44 2013 +0300
+++ b/tools/viewmod.c	Fri Oct 18 19:47:30 2013 +0300
@@ -412,14 +412,14 @@
     dmMsg(1, "Reading file: %s\n", optFilename);
 #ifdef JSS_SUP_XM
     dmMsg(1, "* Trying XM...\n");
-    result = jssLoadXM(file, &mod);
+    result = jssLoadXM(file, &mod, FALSE);
 #endif
 #ifdef JSS_SUP_JSSMOD
     if (result != 0)
     {
         dmfseek(file, 0L, SEEK_SET);
         dmMsg(1, "* Trying JSSMOD ...\n");
-        result = jssLoadJSSMOD(file, &mod);
+        result = jssLoadJSSMOD(file, &mod, TRUE);
     }
 #endif
     dmf_close(file);