Skip to content

Commit

Permalink
Fix issue s-macke#3 from GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
earlephilhower committed Oct 4, 2017
1 parent e30c3da commit 1620daa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sam.c
Original file line number Diff line number Diff line change
Expand Up @@ -1394,7 +1394,7 @@ if (debug) printf("phoneme %d (%c%c) length %d\n", debugX-1, signInputTable1[pho
index = phonemeindex[X-1];

// prior phoneme a stop consonant>
if((flags[index] & 2) != 0)
if((flags[index] & 2) != 0) {
// Rule: <LIQUID CONSONANT> <DIPHTONG>

if (debug) printf("RULE: <LIQUID CONSONANT> <DIPHTONG> - decrease by 2\n");
Expand All @@ -1406,6 +1406,7 @@ if (debug) printf("phoneme %d (%c%c) length %d\n", X, signInputTable1[phonemeind

if (debug) printf("POST\n");
if (debug) printf("phoneme %d (%c%c) length %d\n", X, signInputTable1[phonemeindex[X]], signInputTable2[phonemeindex[X]], phonemeLength[X]);
}
}

// move to next phoneme
Expand Down

0 comments on commit 1620daa

Please sign in to comment.