summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2009-08-05 13:44:15 +0000
committerSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2009-08-05 13:44:15 +0000
commitf17e942cc9e95674fbfe63c98d0af793b9aeb9b2 (patch)
treec96024770dea4fcea951d2e9a92cc955e2f97bc1
parenta50c4510f13673a9aaae3f9cc274e3f82057a0ef (diff)
downloadpcsxr-f17e942cc9e95674fbfe63c98d0af793b9aeb9b2.tar.gz
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@24201 e17a0e51-4ae3-4d35-97c3-1a29b211df97
-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;