- Compile with -std=c++14 or -std=c++11 on GCC/Clang.
- Fixed initialization crossing goto.
This commit is contained in:
parent
8d58d63b60
commit
6baa1b0674
2 changed files with 27 additions and 2 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue