1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-31 14:02: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

@@ -136,7 +136,7 @@ struct raycaster : glhr::GLprogram {
shared_ptr<raycaster> our_raycaster;
EX void reset_raycaster() { our_raycaster = nullptr; };
EX void reset_raycaster() { our_raycaster = nullptr; }
int deg;
@@ -846,7 +846,7 @@ array<float, 2> enc(int i, int a) {
res[0] = ((i%per_row) * deg + a + .5) / length;
res[1] = ((i / per_row) + .5) / rows;
return res;
};
}
color_t color_out_of_range = 0x0F0800FF;