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

Fix warning in L3DEX2_Line3D.

This commit is contained in:
Sergey Lipskiy 2014-11-12 17:27:07 +06:00
parent d43c715627
commit 2b5ecbea66

View File

@ -13,7 +13,7 @@
void L3DEX2_Line3D( u32 w0, u32 w1 )
{
u32 wd = _SHIFTR( w0 + 1, 0, 8 );
u32 wd = _SHIFTR( (w0 + 1), 0, 8 );
if (wd == 0)
gSPLine3D( _SHIFTR( w0, 17, 7 ), _SHIFTR( w0, 9, 7 ), 0 );