comparison tools/ppl.c @ 797:f066e9dccf29

Oops, fix some inverted booleans.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 18 Oct 2013 19:51:38 +0300
parents 97ecc0a9c21f
children eba3b87f3f84
comparison
equal deleted inserted replaced
796:97ecc0a9c21f 797:f066e9dccf29
593 593
594 // Read module file 594 // Read module file
595 dmMsg(1, "Reading file: %s\n", optFilename); 595 dmMsg(1, "Reading file: %s\n", optFilename);
596 #ifdef JSS_SUP_XM 596 #ifdef JSS_SUP_XM
597 dmMsg(2, "* Trying XM...\n"); 597 dmMsg(2, "* Trying XM...\n");
598 result = jssLoadXM(file, &engine.mod, FALSE); 598 result = jssLoadXM(file, &engine.mod, TRUE);
599 #endif 599 #endif
600 #ifdef JSS_SUP_JSSMOD 600 #ifdef JSS_SUP_JSSMOD
601 if (result != 0) 601 if (result != 0)
602 { 602 {
603 dmfseek(file, 0L, SEEK_SET); 603 dmfseek(file, 0L, SEEK_SET);
604 dmMsg(1, "* Trying JSSMOD ...\n"); 604 dmMsg(1, "* Trying JSSMOD ...\n");
605 result = jssLoadJSSMOD(file, &engine.mod, FALSE); 605 result = jssLoadJSSMOD(file, &engine.mod, TRUE);
606 } 606 }
607 #endif 607 #endif
608 dmf_close(file); 608 dmf_close(file);
609 609
610 if (result != DMERR_OK) 610 if (result != DMERR_OK)