diff options
Diffstat (limited to 'src/tile.xpm')
| -rw-r--r-- | src/tile.xpm | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/tile.xpm b/src/tile.xpm index d5c9c6e34..5ef010ac3 100644 --- a/src/tile.xpm +++ b/src/tile.xpm @@ -1,9 +1,14 @@ /* XPM */ +static char tile_cmap[3][32] = { +"O c #F0F0F0", +"o c #E0E0E0", +". c #D8D8D8" +}; static const char * tile_xpm[] = { "16 16 3 1", -"O c #F0F0F0", -"o c #E0E0E0", -". c #D8D8D8", +tile_cmap[0], +tile_cmap[1], +tile_cmap[2], "OOOOOOOOOOOOOOOO", "oooooooooooooooo", "................", |
