mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-22 05:27:20 +00:00
[client] main: move micDefaultState into g_state
This commit is contained in:
parent
9dee9ed7bb
commit
ae38db4915
@ -814,9 +814,9 @@ void audio_recordStart(int channels, int sampleRate, PSAudioFormat format)
|
||||
|
||||
if (audio.record.started)
|
||||
realRecordStart(channels, sampleRate, format);
|
||||
else if (g_params.micDefaultState == MIC_DEFAULT_DENY)
|
||||
else if (g_state.micDefaultState == MIC_DEFAULT_DENY)
|
||||
DEBUG_INFO("Microphone access denied by default");
|
||||
else if (g_params.micDefaultState == MIC_DEFAULT_ALLOW)
|
||||
else if (g_state.micDefaultState == MIC_DEFAULT_ALLOW)
|
||||
{
|
||||
DEBUG_INFO("Microphone access granted by default");
|
||||
realRecordStart(channels, sampleRate, format);
|
||||
|
@ -1234,6 +1234,8 @@ static int lg_run(void)
|
||||
};
|
||||
purespice_init(&psInit);
|
||||
|
||||
g_state.micDefaultState = g_params.micDefaultState;
|
||||
|
||||
if (g_params.useSpiceInput ||
|
||||
g_params.useSpiceClipboard ||
|
||||
g_params.useSpiceAudio)
|
||||
|
@ -147,6 +147,8 @@ struct AppState
|
||||
bool resizeDone;
|
||||
|
||||
bool autoIdleInhibitState;
|
||||
|
||||
enum MicDefaultState micDefaultState;
|
||||
};
|
||||
|
||||
struct AppParams
|
||||
|
Loading…
Reference in New Issue
Block a user