1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-26 01:50:36 +00:00

fixed a bug in drawBubble

This commit is contained in:
Zeno Rogue 2019-12-26 09:40:28 +01:00
parent 78930f08f9
commit b53b98f0d5

View File

@ -3773,7 +3773,7 @@ struct flashdata {
vector<flashdata> flashes; vector<flashdata> flashes;
EX void drawBubble(cell *c, color_t col, string s, ld size) { 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.text = s;
fd.angle = size; fd.angle = size;
flashes.push_back(fd); flashes.push_back(fd);