Make the unexplored a muted pink to have it stand out

This commit is contained in:
Juhani Krekelä 2019-06-29 15:51:33 +03:00
parent 8c453d6069
commit 97431250a6
1 changed files with 1 additions and 1 deletions

View File

@ -641,7 +641,7 @@ function drawCavern()
love.graphics.setColor(0.2, 0.7, 0.2)
love.graphics.ellipse('fill', x + 0.5 * x_scale, y + 0.5 * y_scale, 0.7 * x_scale/2, 0.7 * y_scale/2)
else
love.graphics.setColor(0.5, 0.5, 0.5)
love.graphics.setColor(0.7, 0.5, 0.5)
love.graphics.rectangle('fill', x, y, x_scale, y_scale)
end
end