- Compile with -std=c++14 or -std=c++11 on GCC/Clang.

- Fixed initialization crossing goto.
This commit is contained in:
Braden Obrzut 2016-02-27 02:20:34 -05:00
commit 6baa1b0674
2 changed files with 27 additions and 2 deletions

View file

@ -2137,7 +2137,8 @@ bool P_TryMove(AActor *thing, fixed_t x, fixed_t y,
// Check for crossed portals
bool portalcrossed = false;
bool portalcrossed;
portalcrossed = false;
while (true)
{