add icons
This commit is contained in:
parent
ba795ed653
commit
93b49bdea0
2 changed files with 5 additions and 4 deletions
BIN
res/image.png
BIN
res/image.png
Binary file not shown.
Before Width: | Height: | Size: 7 KiB After Width: | Height: | Size: 12 KiB |
|
@ -122,19 +122,20 @@ int game_loop() {
|
|||
cells[index].rec.width = delta_x;
|
||||
const field* tmp = &world.map[index];
|
||||
if (tmp->is_protected) {
|
||||
sprintf(&cells[index].val[0], "%c", 'F');
|
||||
sprintf(&cells[index].val[0], "%s", "#193#");
|
||||
} else {
|
||||
switch (tmp->state) {
|
||||
case OPENED:
|
||||
if (tmp->near_bombs > 0) sprintf(&cells[index].val[0], "%hhu", tmp->near_bombs);
|
||||
else sprintf(&cells[index].val[0], "%c", '.');
|
||||
else sprintf(&cells[index].val[0], "%s", "#0#");
|
||||
break;
|
||||
case DESTROYED:
|
||||
sprintf(&cells[index].val[0], "%c", DESTROYED);
|
||||
sprintf(&cells[index].val[0], "%s", "#152#");
|
||||
break;
|
||||
case CLOSED:
|
||||
case MINED:
|
||||
sprintf(&cells[index].val[0], "%c", CLOSED);
|
||||
//sprintf(&cells[index].val[0], "%c", CLOSED);
|
||||
sprintf(&cells[index].val[0], "%s", "#106#");
|
||||
break;
|
||||
default:
|
||||
sprintf(&cells[index].val[0], "%c", '?');
|
||||
|
|
Loading…
Add table
Reference in a new issue