diff options
author | Wohlstand <admin@wohlnet.ru> | 2017-11-03 00:55:15 +0300 |
---|---|---|
committer | Wohlstand <admin@wohlnet.ru> | 2017-11-03 00:55:15 +0300 |
commit | 2017bff1824134273865b600c3eeca4f6cb0d299 (patch) | |
tree | 6429490a27450eb540bce5aa40495c284113bf04 | |
parent | 3d77fd6a78ece6527581927fd36539e6180a4369 (diff) | |
download | libADLMIDI-2017bff1824134273865b600c3eeca4f6cb0d299.tar.gz libADLMIDI-2017bff1824134273865b600c3eeca4f6cb0d299.tar.bz2 libADLMIDI-2017bff1824134273865b600c3eeca4f6cb0d299.zip |
Small fix of Measurer in GenAdldata tool
-rw-r--r-- | utils/gen_adldata/measurer.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/gen_adldata/measurer.cpp b/utils/gen_adldata/measurer.cpp index 8bb0772..2aee3f7 100644 --- a/utils/gen_adldata/measurer.cpp +++ b/utils/gen_adldata/measurer.cpp @@ -2,9 +2,9 @@ #include <cmath> #ifndef ADLMIDI_USE_DOSBOX_OPL -#include "nukedopl3.h" +#include "../nukedopl3.h" #else -#include "dbopl.h" +#include "../dbopl.h" #endif DurationInfo MeasureDurations(const ins &in) @@ -83,7 +83,7 @@ DurationInfo MeasureDurations(const ins &in) double hertz = 172.00093 * std::exp(0.057762265 * (notenum + id[n].finetune)); if(hertz > 131071) { - fprintf(stderr, "Why does note %d + finetune %d produce hertz %g?\n", + std::fprintf(stderr, "MEASURER WARNING: Why does note %d + finetune %d produce hertz %g? \n", notenum, id[n].finetune, hertz); hertz = 131071; } |