changeset 31732:0cf0df0ed136

Remove a useless condition that is already handled a few lines further down (the len == 0 check).
author reimar
date Sun, 25 Jul 2010 09:33:49 +0000
parents a0f828ae372d
children 7bbcba59cea6
files spudec.c
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/spudec.c	Sun Jul 25 09:31:00 2010 +0000
+++ b/spudec.c	Sun Jul 25 09:33:49 2010 +0000
@@ -305,8 +305,6 @@
 	rle = (rle << 4) | get_nibble(packet);
 	if (rle < 0x040) {
 	  rle = (rle << 4) | get_nibble(packet);
-	  if (rle < 0x0004)
-	    rle |= ((this->width - x) << 2);
 	}
       }
     }