Video: Fixed scanline effect on non-ntsc video filters
This commit is contained in:
parent
87a50ad2b3
commit
f5133242c5
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ void DefaultVideoFilter::DecodePpuBuffer(uint16_t *ppuOutputBuffer, uint32_t* ou
|
|||
|
||||
void DefaultVideoFilter::ApplyFilter(uint16_t *ppuOutputBuffer)
|
||||
{
|
||||
DecodePpuBuffer(ppuOutputBuffer, (uint32_t*)GetOutputBuffer(), true);
|
||||
DecodePpuBuffer(ppuOutputBuffer, (uint32_t*)GetOutputBuffer(), EmulationSettings::GetVideoFilterType() <= VideoFilterType::BisqwitNtsc);
|
||||
}
|
||||
|
||||
void DefaultVideoFilter::RgbToYiq(double r, double g, double b, double &y, double &i, double &q)
|
||||
|
|
Loading…
Add table
Reference in a new issue