GPU: Fix incorrect overwrite of set mask bit from draw mode

Fixes motion blur in Vagrant Story.
This commit is contained in:
Connor McLaughlin 2020-02-08 00:01:32 +09:00
parent 287ab93cdc
commit 1e45c9c4e1
1 changed files with 1 additions and 1 deletions

View File

@ -395,7 +395,7 @@ protected:
static constexpr u16 POLYGON_TEXPAGE_MASK = 0b0000100111111111;
// Bits 0..5 are returned in the GPU status register, latched at E1h/polygon draw time.
static constexpr u32 GPUSTAT_MASK = 0b111111111111;
static constexpr u32 GPUSTAT_MASK = 0b11111111111;
u16 bits;