diff --git a/CHANGES b/CHANGES index 379362553..7af5e7f6e 100644 --- a/CHANGES +++ b/CHANGES @@ -9,7 +9,6 @@ Bugfixes: - DS Video: Fix display capture blending value 16 (fixes mgba.io/i/757) - DS GX: Properly center cross product in polygon normal calculations - DS Video: Fix affine parameter advancing (fixes mgba.io/i/802) - - DS GX: Fix incorrect W values - DS Video: Fix 2D/3D blending alpha values - DS I/O: Enable POWCNT1 bit 1 at boot (fixes mgba.io/i/616) - DS Slot-1: Reply to IR 0x08 command properly (fixes mgba.io/i/666) diff --git a/src/ds/gx.c b/src/ds/gx.c index 201459cd5..304a93c38 100644 --- a/src/ds/gx.c +++ b/src/ds/gx.c @@ -408,7 +408,7 @@ static int32_t _dotViewport(struct DSGXVertex* vertex, int32_t* col) { a = col[12]; b = MTX_ONE; sum += a * b; - return sum >> 12LL; + return sum >> 8LL; } static int16_t _dotTexture(struct DSGX* gx, int16_t* input, int mode, int c) {