diff options
author | notaz | 2011-06-27 18:31:01 +0300 |
---|---|---|
committer | notaz | 2011-07-08 00:15:08 +0300 |
commit | 9f21ebfe5570056501063c4165a0debf880f534f (patch) | |
tree | 8ad1d9494980ac723d296a6cebc0a6a5a448e514 | |
parent | 4955e9d068cd7cbb2bc8755d7bab09b78b92a981 (diff) | |
download | pcsx_rearmed-9f21ebfe5570056501063c4165a0debf880f534f.tar.gz pcsx_rearmed-9f21ebfe5570056501063c4165a0debf880f534f.tar.bz2 pcsx_rearmed-9f21ebfe5570056501063c4165a0debf880f534f.zip |
dfxvideo: clear lcf when interlace is off
-rw-r--r-- | plugins/dfxvideo/gpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/dfxvideo/gpu.c b/plugins/dfxvideo/gpu.c index 0d105f8..a2b4f92 100644 --- a/plugins/dfxvideo/gpu.c +++ b/plugins/dfxvideo/gpu.c @@ -649,7 +649,7 @@ void CALLBACK GPUwriteStatus(uint32_t gdata) // WRITE STATUS } lGPUstatusRet|=GPUSTATUS_INTERLACED; } - else lGPUstatusRet&=~GPUSTATUS_INTERLACED; + else lGPUstatusRet&=~(GPUSTATUS_INTERLACED|0x80000000); if (PSXDisplay.PAL) lGPUstatusRet|=GPUSTATUS_PAL; |