| @@ -240,7 +240,7 @@ function initializeDemo() { | |||
| opt.value = voice.identifier; | |||
| console.log('Adding voice: ' + opt.text); | |||
| sel.add(opt); | |||
| if (voice.name === 'default') { | |||
| if (voice.name === 'en') { | |||
| opt.id = 'default-voice'; | |||
| opt.selected = true; | |||
| } | |||
| @@ -1,4 +0,0 @@ | |||
| name default | |||
| language en | |||
| gender male | |||
| @@ -592,7 +592,7 @@ int main(int argc, char **argv) | |||
| } | |||
| if (voicename[0] == 0) | |||
| strcpy(voicename, "default"); | |||
| strcpy(voicename, "en"); | |||
| result = espeak_ng_SetVoiceByName(voicename); | |||
| if (result != ENS_OK) { | |||
| @@ -556,7 +556,7 @@ voice_t *LoadVoice(const char *vname, int control) | |||
| return NULL; | |||
| } else { | |||
| if (voicename[0] == 0) | |||
| strcpy(voicename, "default"); | |||
| strcpy(voicename, "en"); | |||
| sprintf(path_voices, "%s%cvoices%c", path_home, PATHSEP, PATHSEP); | |||
| sprintf(buf, "%s%s", path_voices, voicename); // look in the main voices directory | |||