From b735dbd320239e2f5fbff15a29388f6513c2f218 Mon Sep 17 00:00:00 2001 From: AlexGuo1998 Date: Thu, 11 Apr 2019 13:20:05 +0800 Subject: [PATCH] Fix wrong data 82 ('R') should be 72 ('H') here. Maybe some mistakes in refactoring: https://github.com/vidarh/SAM/commit/5a4b88b387316309ef7636fc332b5e66906d8694#diff-8e2c3c7e3979240badeac46c09c0dfd8R269 --- src/reciter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reciter.c b/src/reciter.c index 5b72d3b3..58847ffe 100644 --- a/src/reciter.c +++ b/src/reciter.c @@ -280,7 +280,7 @@ int TextToPhonemes(unsigned char *input) { if (A == '@') { if(Code37055(mem58+1, 4) == 0) { A = inputtemp[X]; - if ((A != 82) && (A != 84) && + if ((A != 72) && (A != 84) && (A != 67) && (A != 83)) r = 1; } else { r = -2;