1
0
mirror of https://github.com/tateisu/SubwayTooter synced 2024-12-27 17:32:54 +01:00

読み上げキューが30より多くならないようにした

This commit is contained in:
tateisu 2017-06-21 15:00:44 +09:00
parent 7d770b4e2e
commit 75b236dbf8

View File

@ -262,6 +262,8 @@ class AppState {
}
tts_queue.add( sv );
if( tts_queue.size() > 30 ) tts_queue.removeFirst();
flushSpeechQueue();
}