mirror of https://github.com/PCSX2/pcsx2.git
IPU: Fix software renderer FMV hack without AR change
This commit is contained in:
parent
299edae7c0
commit
1dbc11bdd5
|
@ -431,17 +431,16 @@ static __ri void ipuBDEC(tIPU_CMD_BDEC bdec)
|
||||||
|
|
||||||
static __fi bool ipuVDEC(u32 val)
|
static __fi bool ipuVDEC(u32 val)
|
||||||
{
|
{
|
||||||
if (EmuConfig.GS.FMVAspectRatioSwitch != FMVAspectRatioSwitchType::Off) {
|
static int count = 0;
|
||||||
static int count = 0;
|
if (count++ > 5) {
|
||||||
if (count++ > 5) {
|
if (!FMVstarted) {
|
||||||
if (!FMVstarted) {
|
EnableFMV = true;
|
||||||
EnableFMV = true;
|
FMVstarted = true;
|
||||||
FMVstarted = true;
|
|
||||||
}
|
|
||||||
count = 0;
|
|
||||||
}
|
}
|
||||||
eecount_on_last_vdec = cpuRegs.cycle;
|
count = 0;
|
||||||
}
|
}
|
||||||
|
eecount_on_last_vdec = cpuRegs.cycle;
|
||||||
|
|
||||||
switch (ipu_cmd.pos[0])
|
switch (ipu_cmd.pos[0])
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
|
|
Loading…
Reference in New Issue