added a default favicon for search results from domains that do not have a favicon

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3966 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 18 years ago
parent 89e1848db6
commit ac7b6b9c10

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

@ -170,7 +170,7 @@ public class ymageBMPParser {
int n = 0;
int b;
for (int rows = 0; rows < height; rows++) {
for (int columns = 0; columns < width; columns = columns + 2) {
for (int columns = 0; columns < width; columns = columns + 4) {
b = ((int) s[offset + n] & 0xff);
n++;
image.setRGB(columns, (height - rows - 1), colortable.colorindex[(b & 0xc0) >> 6]);

Loading…
Cancel
Save