mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-23 21:07:17 +00:00
Silence a warning to fix the build break on clang++ -std=c++11 -Wall
.
./rogueviz/rewriting.cpp:120:37: error: suggest braces around initialization of subobject [-Werror,-Wmissing-braces] ginf[gInfOrderMixed].distlimit = {1, 1}; ^~~~ { }
This commit is contained in:
parent
a07e1d0809
commit
fe53cd09ad
@ -117,7 +117,7 @@ void load_rules(vector<string> vs) {
|
||||
|
||||
stop_game();
|
||||
set_geometry(gInfOrderMixed);
|
||||
ginf[gInfOrderMixed].distlimit = {1, 1};
|
||||
ginf[gInfOrderMixed].distlimit = {{1, 1}};
|
||||
ginf[gInfOrderMixed].flags |= qEXPERIMENTAL;
|
||||
|
||||
start = "";
|
||||
|
Loading…
Reference in New Issue
Block a user