Changeset 6894576 for examples


Ignore:
Timestamp:
Jan 12, 2017, 10:09:24 PM (7 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, sampler, yinfft+
Children:
fd9590f
Parents:
75435f0
Message:

examples/parse_args.h: use atof for miditap note and velo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • examples/parse_args.h

    r75435f0 r6894576  
    220220        break;
    221221      case 'n':
    222         miditap_note = atoi (optarg);
     222        miditap_note = atof (optarg);
    223223        break;
    224224      case 'V':
    225         miditap_velo = atoi (optarg);
     225        miditap_velo = atof (optarg);
    226226        break;
    227227      case 'i':
Note: See TracChangeset for help on using the changeset viewer.