cellRec: fix some warning

This commit is contained in:
Megamouse 2022-05-05 11:40:50 +02:00
parent 7d73d90c1a
commit ced890301c
1 changed files with 4 additions and 1 deletions

View File

@ -298,8 +298,11 @@ error_code cellRecOpen(vm::cptr<char> pDirName, vm::cptr<char> pFileName, vm::cp
break; break;
} }
case CELL_REC_OPTION_USE_SYSTEM_SPU: case CELL_REC_OPTION_USE_SYSTEM_SPU:
{
if (video_quality == VIDEO_QUALITY_6 || video_quality == VIDEO_QUALITY_7)
{ {
// TODO: Seems differ if video_quality is VIDEO_QUALITY_6 or VIDEO_QUALITY_7 // TODO: Seems differ if video_quality is VIDEO_QUALITY_6 or VIDEO_QUALITY_7
}
rec.param.use_system_spu = opt->value.use_system_spu; rec.param.use_system_spu = opt->value.use_system_spu;
break; break;
} }