Skip to content

Commit b735dbd

Browse files
authored
Fix wrong data
82 ('R') should be 72 ('H') here. Maybe some mistakes in refactoring: 5a4b88b#diff-8e2c3c7e3979240badeac46c09c0dfd8R269
1 parent c86ea39 commit b735dbd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/reciter.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ int TextToPhonemes(unsigned char *input) {
280280
if (A == '@') {
281281
if(Code37055(mem58+1, 4) == 0) {
282282
A = inputtemp[X];
283-
if ((A != 82) && (A != 84) &&
283+
if ((A != 72) && (A != 84) &&
284284
(A != 67) && (A != 83)) r = 1;
285285
} else {
286286
r = -2;

0 commit comments

Comments
 (0)