FIX NBS PITCH
This commit is contained in:
parent
ed8c89bcb2
commit
ab1a7654d8
1 changed files with 3 additions and 1 deletions
|
@ -174,6 +174,8 @@ public class NBSConverter implements Converter {
|
||||||
int key = note.key;
|
int key = note.key;
|
||||||
if (note.instrument < instrumentIndex.length) {
|
if (note.instrument < instrumentIndex.length) {
|
||||||
instrument = instrumentIndex[note.instrument];
|
instrument = instrumentIndex[note.instrument];
|
||||||
|
|
||||||
|
key = note.key + (note.pitch / 100);
|
||||||
} else {
|
} else {
|
||||||
int index = note.instrument - instrumentIndex.length;
|
int index = note.instrument - instrumentIndex.length;
|
||||||
|
|
||||||
|
@ -217,8 +219,8 @@ public class NBSConverter implements Converter {
|
||||||
if (!sounds.contains(name) && sounds.contains(file)) name = file;
|
if (!sounds.contains(name) && sounds.contains(file)) name = file;
|
||||||
|
|
||||||
instrument = Instrument.of(name);
|
instrument = Instrument.of(name);
|
||||||
key += customInstrument.pitch;
|
|
||||||
|
|
||||||
|
key += note.key + customInstrument.pitch;
|
||||||
key -= 45 + (note.pitch / 100);
|
key -= 45 + (note.pitch / 100);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue