1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-07 03:13:49 +00:00

Fix combiner for FILL mode.

This commit is contained in:
Sergey Lipskiy 2013-06-16 20:53:12 +07:00
parent c9ddb8e1a6
commit de6aa21d11

View File

@ -677,7 +677,7 @@ void OGL_UpdateStates()
if (gDP.otherMode.cycleType == G_CYC_COPY)
Combiner_SetCombine( EncodeCombineMode( 0, 0, 0, TEXEL0, 0, 0, 0, TEXEL0, 0, 0, 0, TEXEL0, 0, 0, 0, TEXEL0 ) );
else if (gDP.otherMode.cycleType == G_CYC_FILL)
Combiner_SetCombine( EncodeCombineMode( 0, 0, 0, SHADE, 0, 0, 0, 1, 0, 0, 0, SHADE, 0, 0, 0, 1 ) );
Combiner_SetCombine( EncodeCombineMode( 0, 0, 0, SHADE, 0, 0, 0, SHADE, 0, 0, 0, SHADE, 0, 0, 0, SHADE ) );
else
Combiner_SetCombine( gDP.combine.mux );
}