Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source/client/StarClientApplication.cpp
diff options
context:
space:
mode:
authorKae <80987908+Novaenia@users.noreply.github.com>2023-07-19 23:25:16 +1000
committerKae <80987908+Novaenia@users.noreply.github.com>2023-07-19 23:25:16 +1000
commitf2bc9adc365c5488e0fdd0996d5bdc3027f34806 (patch)
tree4ee972c0194c165c79a848876eb7c36f70bbdf22 /source/client/StarClientApplication.cpp
parent1f038540a59ff96aed3cda901449a298b6f1c11c (diff)
Minor fixes
Diffstat (limited to 'source/client/StarClientApplication.cpp')
-rw-r--r--source/client/StarClientApplication.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/client/StarClientApplication.cpp b/source/client/StarClientApplication.cpp
index b264f15..33327fa 100644
--- a/source/client/StarClientApplication.cpp
+++ b/source/client/StarClientApplication.cpp
@@ -214,6 +214,7 @@ void ClientApplication::applicationInit(ApplicationControllerPtr appController)
m_voice->loadJson(jVoice.toObject(), true);
m_voice->init();
+ m_voice->setLocalSpeaker(0);
}
void ClientApplication::renderInit(RendererPtr renderer) {
@@ -375,13 +376,12 @@ void ClientApplication::update() {
updateTitle();
else if (m_state > MainAppState::Title)
updateRunning();
-
- // swallow leftover encoded data incase we aren't in-game yet to allow mic read to continue.
- // TODO: directly disable encoding at menu so we don't have to do this
- {
+
+ // Swallow leftover encoded voice data if we aren't in-game to allow mic read to continue for settings.
+ if (m_state <= MainAppState::Title) {
DataStreamBuffer ext;
m_voice->send(ext);
- }
+ } // TODO: directly disable encoding at menu so we don't have to do this
m_guiContext->cleanup();
m_edgeKeyEvents.clear();