From 5c54e1b20f037cac87011472a1f853c26e04a82a Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Sun, 9 Oct 2016 17:52:34 +1100 Subject: [PATCH] Speed up --- ClassicalSharp/Game/ChatLog.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ClassicalSharp/Game/ChatLog.cs b/ClassicalSharp/Game/ChatLog.cs index 44c3fc60d..bdb9819b3 100644 --- a/ClassicalSharp/Game/ChatLog.cs +++ b/ClassicalSharp/Game/ChatLog.cs @@ -22,7 +22,7 @@ namespace ClassicalSharp { synth = new SpeechSynthesizer(); synth.SetOutputToDefaultAudioDevice(); synth.Volume = 100; - synth.Rate = -2; + synth.Rate = 0; Thread thread = new Thread(SoundThread); thread.IsBackground = true;