mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2026-02-26 18:19:42 +00:00
added an option to disable background particles and to change font size on desktop
This commit is contained in:
10
graph.cpp
10
graph.cpp
@@ -4337,8 +4337,14 @@ void drawcell(cell *c, transmatrix V, int spinv, bool mirrored) {
|
||||
}
|
||||
}
|
||||
|
||||
if(c->land == laBlizzard)
|
||||
blizzardcells[c].frame = frameid;
|
||||
if(c->land == laBlizzard) {
|
||||
if(vid.backeffects)
|
||||
blizzardcells[c].frame = frameid;
|
||||
else {
|
||||
forCellIdEx(c2, i, c) if(againstWind(c, c2))
|
||||
queuepoly(V * ddspin(c, i) * xpush(cellgfxdist(c, i)/2), shWindArrow, 0x8080FF80);
|
||||
}
|
||||
}
|
||||
|
||||
if(c->land == laWhirlwind) {
|
||||
whirlwind::calcdirs(c);
|
||||
|
||||
Reference in New Issue
Block a user