:well, this is one for the Main Page talk, not for my user page :D But if you refresh you'll see it's there. I just reverted and inserted it by hand because the <div> tags were a bit screwed up after your edit (a bug in the rich text editor). Do you have plans to create something more to back the logo up? [[User:Gryzor|Gryzor]] 11:09, 2 January 2009 (UTC)
== Error CPC Plus Horizontal scroll ==
Hi<br>
There seems to have an error in "CPC Plus Horizontal scroll".It doesn't work properly on winape.Could you test it on a real CPC+ to be sure ?<br>
i just wrote a little fix in case of (ln142-156)<br>
<br>
;;The horizontal pixel scroll offset is updated for every pixel.<br>;; The CRTC scroll offset is updated for every CRTC character (every 16 pixels in mode 2<br>;; OR every 8 pixels in mode 1 OR every 4 pixels in mode 0).
scroll_speed EQU 2 ;; increments for pixel scrolling:<br> ;; 1 for mode 2<br> ;; 2 for mode 1<br> ;; 4 for mode 0
<br>.scroll_right<br>;; get horizontal pixel scroll offset<br>ld a,(horz_pixel_offset)
sub scroll_speed <br>and &f<br>ld (horz_pixel_offset),a<br>cp 16-scroll_speed<br>ret nz