mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-16 11:48:36 +12:00
Fix state reset in cellMic, cellAudio, cellCamera (#6761)
This commit is contained in:
parent
42aa4c5000
commit
1d07c40aa5
4 changed files with 20 additions and 2 deletions
|
@ -85,7 +85,7 @@ void mic_context::load_config_and_init()
|
|||
{
|
||||
auto device_list = fmt::split(g_cfg.audio.microphone_devices, {"@@@"});
|
||||
|
||||
if (device_list.size())
|
||||
if (device_list.size() && mic_list.empty())
|
||||
{
|
||||
switch (g_cfg.audio.microphone_type)
|
||||
{
|
||||
|
@ -481,6 +481,7 @@ s32 cellMicEnd(ppu_thread& ppu)
|
|||
|
||||
// TODO
|
||||
mic_thr->init = 0;
|
||||
mic_thr->event_queue_key = 0;
|
||||
|
||||
return CELL_OK;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue