Browse Source

code cleanup: remove unused parameter from SetUpPhonemeTable.

See commit 65847bd251. Bool recursing is not used for
anything anymore. Fixes a (compiler warning.
master
Juho Hiltunen 5 years ago
parent
commit
713e8a9e2c
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      src/libespeak-ng/synthdata.c

+ 3
- 3
src/libespeak-ng/synthdata.c View File

@@ -329,7 +329,7 @@ unsigned char *GetEnvelope(int index)
return (unsigned char *)&phondata_ptr[index];
}

static void SetUpPhonemeTable(int number, bool recursing)
static void SetUpPhonemeTable(int number)
{
int ix;
int includes;
@@ -338,7 +338,7 @@ static void SetUpPhonemeTable(int number, bool recursing)

if ((includes = phoneme_tab_list[number].includes) > 0) {
// recursively include base phoneme tables
SetUpPhonemeTable(includes-1, true);
SetUpPhonemeTable(includes - 1);
}

// now add the phonemes from this table
@@ -354,7 +354,7 @@ static void SetUpPhonemeTable(int number, bool recursing)
int SelectPhonemeTable(int number)
{
n_phoneme_tab = 0;
SetUpPhonemeTable(number, false); // recursively for included phoneme tables
SetUpPhonemeTable(number); // recursively for included phoneme tables
n_phoneme_tab++;
return number;
}

Loading…
Cancel
Save