cellMic: fix mic type regression

This commit is contained in:
Megamouse 2023-04-12 20:23:09 +02:00
parent 2a7431bd61
commit a6313fa46c
1 changed files with 1 additions and 1 deletions

View File

@ -1269,7 +1269,7 @@ error_code cellMicGetType(s32 dev_num, vm::ptr<s32> ptr_type)
return CELL_MICIN_ERROR_NOT_INIT; return CELL_MICIN_ERROR_NOT_INIT;
// TODO: get proper type (log message is trace because of massive spam) // 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; return CELL_OK;
} }