1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-03-03 04:09:44 +00:00

Silence a couple of warnings on Clang. NFC.

This commit is contained in:
Arthur O'Dwyer
2017-10-17 00:05:55 -07:00
parent 863a065821
commit fa8078dc8b
2 changed files with 3 additions and 3 deletions

View File

@@ -3557,7 +3557,7 @@ void drawcell(cell *c, transmatrix V, int spinv, bool mirrored) {
else if((c->land == laCaribbean || c->land == laOcean || c->land == laOceanWall || c->land == laWhirlpool))
qfloor(c, Vf, shCloudFloor[ct6], darkena(fcol, fd, 0xFF));
else if((c->land == laKraken))
else if(c->land == laKraken)
qfloor(c, Vf, shFullFloor[ct6], darkena(fcol, fd, 0xFF));
else if(c->land == laLivefjord)