From a6313fa46c205479557d3e27f3737f8194134a3b Mon Sep 17 00:00:00 2001 From: Megamouse Date: Wed, 12 Apr 2023 20:23:09 +0200 Subject: [PATCH] cellMic: fix mic type regression --- rpcs3/Emu/Cell/Modules/cellMic.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/Modules/cellMic.cpp b/rpcs3/Emu/Cell/Modules/cellMic.cpp index d5401d0f77..60fd57734f 100644 --- a/rpcs3/Emu/Cell/Modules/cellMic.cpp +++ b/rpcs3/Emu/Cell/Modules/cellMic.cpp @@ -1269,7 +1269,7 @@ error_code cellMicGetType(s32 dev_num, vm::ptr ptr_type) return CELL_MICIN_ERROR_NOT_INIT; // TODO: get proper type (log message is trace because of massive spam) - *ptr_type = CELLMIC_TYPE_BLUETOOTH; + *ptr_type = CELLMIC_TYPE_USBAUDIO; // Needed for Guitar Hero: Warriors of Rock (BLUS30487) return CELL_OK; }