Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/espeak.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/espeak.c b/src/espeak.c
index 1639638..9331fb5 100644
--- a/src/espeak.c
+++ b/src/espeak.c
@@ -262,7 +262,7 @@ play(Econtext *self, Espin *spin, gsize size_to_play)
inline gsize whole(Espin *spin, gsize size_to_play)
{
gsize spin_size = g_memory_output_stream_get_data_size(spin->sound);
- return MIN(size_to_play, spin_size);
+ return MIN(size_to_play, spin_size - spin->sound_offset);
}
inline gsize word(Econtext *self, Espin *spin, gsize size_to_play)