Browse Source

xscore_gen.md : Added common error messages.

cmtoools.c : Changed character flag for 'damperRptFl' to 'u'.
master
kevin 3 years ago
parent
commit
2f85922294
2 changed files with 19 additions and 1 deletions
  1. 18
    0
      doc/xscore_gen.md
  2. 1
    1
      src/cmtools/cmtools.c

+ 18
- 0
doc/xscore_gen.md View File

@@ -277,3 +277,21 @@ in the voice assigned to the first note in the fork will be
277 277
 included in the dynamic change. To exclude a note from the
278 278
 fork assign it a lower case mark.
279 279
 
280
+Common Error Messages:
281
+----------------------
282
+
283
+The tied C#3 in measure 13 (tick:198460) was not terminated.
284
+
285
+The tied Bb3 in measure 12 marked as a tied note but is also marked to sound.
286
+
287
+
288
+Damper down not preceded by damper up in measure:10.
289
+
290
+Damper up not preceded by damper down in measure:23.
291
+
292
+Damper up/down not preceded by damper down in measure:%34.
293
+
294
+
295
+A shorten/shift operation was done to reconcile two overlapped D4 (ticks:1651523 1651983) notes in measure 335.
296
+
297
+A time embedded note (bar=350 A5) was removed even though it overlapped with a note in the same voice.

+ 1
- 1
src/cmtools/cmtools.c View File

@@ -350,7 +350,7 @@ int main( int argc, char* argv[] )
350 350
   cmPgmOptInstallInt( poH, kBegBpmPoId,           'e', "beg_bpm",      0,       0,          &begTempoBPM,  1,
351 351
     "Set to 0 to use the tempo from the score otherwise set to use the tempo at begMeasNumb." );
352 352
 
353
-  cmPgmOptInstallFlag( poH, kDamperRptPoId,        'p', "damper",       0,      1,          &damperRptFl,  1,
353
+  cmPgmOptInstallFlag( poH, kDamperRptPoId,        'u', "damper",       0,      1,          &damperRptFl,  1,
354 354
     "Print the pedal events during 'score_gen' processing.");
355 355
 
356 356
   cmPgmOptInstallFlag( poH, kSvgStandAloneFlPoId,  'n', "svg_stand_alone_fl",0, 1,          &svgStandAloneFl, 1,

Loading…
Cancel
Save