From bd0d5f0b25b4797e84a920ee21e592dae2ad81a0 Mon Sep 17 00:00:00 2001 From: "A. Skrobov" Date: Wed, 29 Apr 2020 15:07:15 +0200 Subject: [PATCH] Fix the comments for rising/falling inflection The original SAM docs at http://www.retrobits.net/atari/sam.shtml#ch3.0 say: "The period inserts a pause and also causes the pitch to fall. The question-mark also inserts a pause, but it causes the pitch to rise." --- src/render.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/render.c b/src/render.c index 5d4e79d8..66609b76 100755 --- a/src/render.c +++ b/src/render.c @@ -398,7 +398,7 @@ do // period phoneme *. if (A == 1) { - // add rising inflection + // add falling inflection A = 1; mem48 = 1; //goto pos48376; @@ -411,7 +411,7 @@ do // question mark phoneme? if (A == 2) { - // create falling inflection + // create rising inflection mem48 = 255; AddInflection(mem48, phase1); }