From b53b98f0d5d641416c14dc384c03e4bc563e4f06 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 26 Dec 2019 09:40:28 +0100 Subject: [PATCH] fixed a bug in drawBubble --- graph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph.cpp b/graph.cpp index 22e322db..f3ff2ea6 100644 --- a/graph.cpp +++ b/graph.cpp @@ -3773,7 +3773,7 @@ struct flashdata { vector flashes; EX void drawBubble(cell *c, color_t col, string s, ld size) { - auto fd = flashdata(ticks, 1000, c, col, 1); + auto fd = flashdata(ticks, 1000, c, col, 0); fd.text = s; fd.angle = size; flashes.push_back(fd);