diff options
Diffstat (limited to 'src/jo_n_speak.c')
-rw-r--r-- | src/jo_n_speak.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jo_n_speak.c b/src/jo_n_speak.c index 4db4113..5fc935e 100644 --- a/src/jo_n_speak.c +++ b/src/jo_n_speak.c @@ -15,15 +15,15 @@ void jo_n_speak(const char *msg) { - espeak_Initialize(AUDIO_OUTPUT_PLAYBACK, 0, 0x0, 0); + espeak_Initialize(AUDIO_OUTPUT_PLAYBACK, 0, NULL, 0); espeak_Synth(msg, strlen(msg), 0, POS_CHARACTER, 0, espeakCHARS_UTF8 | espeakENDPAUSE, - 0x0, - 0x0); + NULL, + NULL); espeak_Synchronize(); espeak_Terminate(); } |