mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-01-12 18:30:34 +00:00
fixed a bug in drawBubble
This commit is contained in:
parent
78930f08f9
commit
b53b98f0d5
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user