Browse Source

phoneme_add_feature: fix setting the vls feature.

master
Reece H. Dunn 8 years ago
parent
commit
c9f9405b24
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/libespeak-ng/phoneme.c

+ 2
- 2
src/libespeak-ng/phoneme.c View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2016 Reece H. Dunn
* Copyright (C) 2017 Reece H. Dunn
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -172,7 +172,7 @@ phoneme_add_feature(PHONEME_TAB *phoneme,
phoneme->phflags |= phVOICED;
break;
case vls:
phoneme->phflags != phVOICELESS;
phoneme->phflags |= phVOICELESS;
break;
// invalid phoneme feature
default:

Loading…
Cancel
Save