Skip to content

Commit 1eb3d61

Browse files
committed
[gfx] change BRICK_FIELD_OCCUPIED_INNER color to light blue for better visibility in sokoban
1 parent 9b9c04f commit 1eb3d61

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

gfx.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ void gfx_get_brick(int size, int color, unsigned char *bitmap) {
103103
fill_colored_tile(size, bitmap, 140, 0, 140, 1, 1, 0);
104104
break;
105105
case BRICK_FIELD_OCCUPIED_INNER:
106-
fill_colored_tile(size, bitmap, 0, 140, 0, 1, 0, 0);
106+
fill_colored_tile(size, bitmap, 0, 140, 140, 1, 0, 0);
107107
break;
108108
case BRICK_FIELD_OCCUPIED_INNER_SMALL:
109109
fill_colored_tile(size, bitmap, 0, 140, 0, 1, 0, 1);
@@ -142,7 +142,7 @@ void gfx_get_brick(int size, int color, unsigned char *bitmap) {
142142
fill_colored_pyramid(size, bitmap, 145, 5, 145, 1, 1, 0);
143143
break;
144144
case BRICK_FIELD_OCCUPIED_INNER:
145-
fill_colored_pyramid(size, bitmap, 5, 145, 5, 1, 0, 0);
145+
fill_colored_pyramid(size, bitmap, 5, 145, 145, 1, 0, 0);
146146
break;
147147
case BRICK_FIELD_OCCUPIED_INNER_SMALL:
148148
fill_colored_pyramid(size, bitmap, 5, 145, 5, 1, 0, 1);

0 commit comments

Comments
 (0)