Skip to content

Commit

Permalink
cellMic: fix mic type regression
Browse files Browse the repository at this point in the history
  • Loading branch information
Megamouse committed Apr 12, 2023
1 parent 6cf7f98 commit a4f3aee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpcs3/Emu/Cell/Modules/cellMic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1266,7 +1266,7 @@ error_code cellMicGetType(s32 dev_num, vm::ptr<s32> 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;
}
Expand Down

0 comments on commit a4f3aee

Please sign in to comment.