This commit is contained in:
Daveo 2001-07-11 16:17:05 +00:00
parent f1000ad3f2
commit 5912c402ca
2 changed files with 2 additions and 2 deletions

View file

@ -156,7 +156,7 @@ void CNpcFishHookPlatform::render()
{ {
y2 = VidGetScrH(); y2 = VidGetScrH();
} }
DrawLine( x1, y1, x2, y2, 0, 0, 0, 0 ); DrawLine( x1, y1, x2, y2, 0, 0, 0, 8 );
} }
} }

View file

@ -191,7 +191,7 @@ void CNpcPendulumPlatform::render()
{ {
if ( y2Boundary >= 0 && y1Boundary <= VidGetScrH() ) if ( y2Boundary >= 0 && y1Boundary <= VidGetScrH() )
{ {
DrawLine( x1, y1, x2, y2, 0, 0, 0, 0 ); DrawLine( x1, y1, x2, y2, 0, 0, 0, 8 );
} }
} }
} }