1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-24 05:17:17 +00:00

Fix "extra ;" warnings on GCC

This commit is contained in:
Arthur O'Dwyer 2022-07-05 13:09:24 -04:00
parent 0ae74aad62
commit dd55129ed3
2 changed files with 2 additions and 4 deletions

View File

@ -610,8 +610,7 @@ auto gobot_hook =
shot_state = 2; shot_state = 2;
} }
return false; return false;
}); })
; ;
#endif #endif

View File

@ -542,9 +542,8 @@ int runslide = arg::add3("-slides", [] {
+ arg::add3("-presangle", [] { + arg::add3("-presangle", [] {
arg::shift_arg_formula(angle); arg::shift_arg_formula(angle);
dir = 0; dir = 0;
}); })
; ;
} }
#endif #endif
} }