summaryrefslogtreecommitdiff
path: root/atari/plot
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2012-01-03 23:03:09 +0000
committerOle Loots <ole@monochrom.net>2012-01-03 23:03:09 +0000
commit08e2052c091541f82d902e7e687f2b51cf627bab (patch)
tree31b4905c2522fc519e85155f8c2df6dd92140f76 /atari/plot
parent224d882c03c9c08a021b1f1362869b8f1eea77ff (diff)
downloadnetsurf-08e2052c091541f82d902e7e687f2b51cf627bab.tar.gz
netsurf-08e2052c091541f82d902e7e687f2b51cf627bab.tar.bz2
removed comment.
svn path=/trunk/netsurf/; revision=13370
Diffstat (limited to 'atari/plot')
-rwxr-xr-xatari/plot/plotter_vdi.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/atari/plot/plotter_vdi.c b/atari/plot/plotter_vdi.c
index a5ba892bd..4bf211d47 100755
--- a/atari/plot/plotter_vdi.c
+++ b/atari/plot/plotter_vdi.c
@@ -977,12 +977,7 @@ inline void set_stdpx( MFDB * dst, int wdplanesz, int x, int y, unsigned char va
*buf = (val&(1<<6)) ? ((*buf)|(whichbit)) : ((*buf)&~(whichbit));
buf += wdplanesz;
- *buf = (val&(1<<7)) ? ((*buf)|(whichbit)) : ((*buf)&~(whichbit));
-
- /*for( p=0; p<=dst->fd_nplanes-1; p++) {
- *buf = (val&(1<<p)) ? ((*buf)|(whichbit)) : ((*buf)&~(whichbit));
- buf += wdplanesz;
- }*/
+ *buf = (val&(1<<7)) ? ((*buf)|(whichbit)) : ((*buf)&~(whichbit));
}
inline unsigned char get_stdpx(MFDB * dst, int wdplanesz, int x, int y )