summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--plugins/dfxvideo/prim.c3
2 files changed, 4 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 517c336a..48a4c8c7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+August 5, 2009 Wei Mingzhi <weimingzhi@gmail.com>
+
+ * plugins/dfxvideo/prim.c: Reverted the previous change, which is wrong.
+
July 27, 2009 Wei Mingzhi <weimingzhi@gmail.com>
* plugins/dfxvideo/prim.c: Clamp the offsets before performing
diff --git a/plugins/dfxvideo/prim.c b/plugins/dfxvideo/prim.c
index bce9d732..48226a70 100644
--- a/plugins/dfxvideo/prim.c
+++ b/plugins/dfxvideo/prim.c
@@ -592,9 +592,6 @@ void primBlkFill(unsigned char * baseAddr)
sW+=sX;
sH+=sY;
- if (sX < 0) sX=0;
- if (sY < 0) sY=0;
-
FillSoftwareArea(sX, sY, sW, sH, BGR24to16(GETLE32(&gpuData[0])));
bDoVSyncUpdate=TRUE;