mirror of
https://github.com/microtherion/VocalEasel.git
synced 2025-01-22 01:53:59 +00:00
Fix Ab -> G#
This commit is contained in:
parent
638ba81948
commit
9206a311b6
|
@ -117,7 +117,7 @@ const char * sSteps = "C DbD EbE F GbG AbA BbB ";
|
||||||
int alt = sSteps[pitch+1] == 'b';
|
int alt = sSteps[pitch+1] == 'b';
|
||||||
if (alt)
|
if (alt)
|
||||||
if (useSharps) {
|
if (useSharps) {
|
||||||
--step; // Db -> C#
|
step= step=='A' ? 'G' : step-1; // Db -> C#
|
||||||
alt = 1;
|
alt = 1;
|
||||||
} else {
|
} else {
|
||||||
alt = -1;
|
alt = -1;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user