1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-30 21:42:59 +00:00

Remove extraneous semicolons to quiet pedantic GCC warnings.

This commit is contained in:
Arthur O'Dwyer
2020-02-22 20:51:27 -05:00
parent 14d2237c01
commit a0da10b408
18 changed files with 26 additions and 26 deletions

View File

@@ -120,7 +120,7 @@ struct coord {
char out = '-';
char& fmap_at(coord c) { return c.x >= 0 && c.x < isize(fmap[0]) && c.y >= 0 && c.y < isize(fmap) ? fmap[c.y][c.x] : out; };
char& fmap_at(coord c) { return c.x >= 0 && c.x < isize(fmap[0]) && c.y >= 0 && c.y < isize(fmap) ? fmap[c.y][c.x] : out; }
ld vx[256][256], vy[256][256];
@@ -398,7 +398,7 @@ void changepoint(int x, int y, bool can_add) {
for(int k=0; k<4; k++) if(!live[k]) fmap_at(cc+k) = '0';
}
};
}
bool showmenu = true;