1
0
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:
Zeno Rogue
2017-10-17 21:26:21 +02:00
parent ae3feb2055
commit 9f48dcf3f6
8 changed files with 40 additions and 15 deletions

View File

@@ -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);