mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-11-02 06:53:00 +00:00
Remove extraneous semicolons to quiet pedantic GCC warnings.
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
@@ -2474,7 +2474,7 @@ auto hooks =
|
||||
addHook(hooks_markers, 100, search_marker) +
|
||||
0;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
#include "kohonen.cpp"
|
||||
#include "staircase.cpp"
|
||||
|
||||
Reference in New Issue
Block a user