kicad-source/bitmaps/find_xpm.xpm
dickelbeck 7f897c3caf *.o files need to be unique within a link image, else the debugger will not properly show symbols from the modules with the name clash.
plot.o was being linked in twice, once as a bitmap.
find.o was being linked in twice, once as a bitmap.
2008-09-09 16:55:08 +00:00

35 lines
550 B
C

/* XPM */
#ifndef XPMMAIN
extern const char *find_xpm[];
#else
const char *find_xpm[] = {
/* columns rows colors const chars-per-pixel */
"16 15 6 1",
"E c #404040",
". c None",
"I c #808080",
"L c #FFFF00",
"M c #0000FF",
"P c White",
"................",
"....EE....EE....",
"....EE....EE....",
"....EE....EE....",
"...EEEE..EEEE...",
"..EPMMEEEEPMME..",
"..EPMMEIIEPMME..",
"..EMMEE..EEMME...",
"..EPME....EPME..",
"..EPME....EPME..",
"..EPME....EPME..",
".EPEEEE..EPEEEE.",
".EPEEEE..EPEEEE.",
".EEEEEE..EEEEEE.",
"................"
};
#endif