Skip to content

Commit

Permalink
fix weather file caching
Browse files Browse the repository at this point in the history
  • Loading branch information
TwelveEyes committed Jun 26, 2024
1 parent 2b4f44d commit ea3e3a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/rd-vanilla/tr_WorldEffects.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,8 @@ class COutside

// Mark The Point
//----------------
wz.mPointCache[((z * wz.mWidth * wz.mHeight) + (y * wz.mWidth) + x)] |= bit;
if (curPosOutside)
wz.mPointCache[((z * wz.mWidth * wz.mHeight) + (y * wz.mWidth) + x)] |= bit;
}
}// for (y)
}// for (x)
Expand Down

0 comments on commit ea3e3a7

Please sign in to comment.