Reduce note count.

This commit is contained in:
Auke Kok 2015-11-21 14:55:40 -08:00
parent 6b995de026
commit ff4c041198

View File

@ -64,7 +64,7 @@ def convert_sign(te):
def convert_nodeblock(te):
pitch = te.get("note")
return None, int(pitch), None
return None, int(pitch) % 12, None
te_convert = {"chest": convert_chest,
"sign": convert_sign,