Skip to content

Commit

Permalink
fix copypasta bug in SFloatRange::Clear (#1174)
Browse files Browse the repository at this point in the history
ref #1162
  • Loading branch information
Razish committed Sep 30, 2023
1 parent 5f86d1a commit 61b6023
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/rd-vanilla/tr_WorldEffects.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ struct SFloatRange
inline void Clear()
{
mMin = 0;
mMin = 0;
mMax = 0;
}
inline void Pick(float& V)
{
Expand Down
2 changes: 1 addition & 1 deletion codemp/rd-vanilla/tr_WorldEffects.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ struct SFloatRange
inline void Clear()
{
mMin = 0;
mMin = 0;
mMax = 0;
}
inline void Pick(float& V)
{
Expand Down

0 comments on commit 61b6023

Please sign in to comment.