Animating ER sound as E shape, not B

This commit is contained in:
Daniel Wolf 2017-03-26 21:42:23 +02:00
parent 05abfbc687
commit e94f7b9aeb
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ Timeline<ShapeSet> getShapeSets(Phone phone, centiseconds duration, centiseconds
case Phone::OW: return single({F});
case Phone::AW: return duration < 30_cs ? diphthong({C}, {F}) : diphthong({D}, {F});
case Phone::OY: return diphthong({E}, {B});
case Phone::ER: return duration < 7_cs ? like(Phone::Schwa) : single({B});
case Phone::ER: return duration < 7_cs ? like(Phone::Schwa) : single({E});
case Phone::P:
case Phone::B: return plosive({A}, any);