Skip to content

Commit

Permalink
xrCore/_rect.h: Fixed compilation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaffeine committed Nov 6, 2015
1 parent 5c88705 commit 6f3dbc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xrCore/_rect.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ typedef _rect<int> Irect;
template <class T>
BOOL _valid(const _rect<T>& m)
{
return lt._valid() && rb._valid();
return m.lt._valid() && m.rb._valid();
}

#endif

0 comments on commit 6f3dbc0

Please sign in to comment.