summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlex Deucher <agd5f@yahoo.com>2005-08-06 06:51:29 +0000
committerAlex Deucher <agd5f@yahoo.com>2005-08-06 06:51:29 +0000
commit7441aa42e26df500f9355f7f1f33af9c955c30f8 (patch)
treebab34441860036abdc523a790275d50906dd451b /src
parent6620d141ebdb9dda3b0eb72462893ade0a4d6389 (diff)
Somehow I missed Bresenham lines when I fixed accel on crtc2. Make sure to
send the new offset there as well.
Diffstat (limited to 'src')
-rw-r--r--src/savage_accel.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/savage_accel.c b/src/savage_accel.c
index 3155e9d..dc7864e 100644
--- a/src/savage_accel.c
+++ b/src/savage_accel.c
@@ -2493,8 +2493,12 @@ SavageSubsequentSolidBresenhamLine(
x1, y1, length, octant, e1, e2, err, psav->SavedFgColor );
#endif
- psav->WaitQueue(psav, 5 );
+ psav->WaitQueue(psav, 7 );
BCI_SEND(cmd);
+
+ BCI_SEND(psav->GlobalBD.bd2.LoPart);
+ BCI_SEND(psav->GlobalBD.bd2.HiPart);
+
if( cmd & BCI_CMD_SEND_COLOR )
BCI_SEND( psav->SavedFgColor );
BCI_SEND(BCI_LINE_X_Y(x1, y1));