Skip to content

Commit 6f3dbc0

Browse files
committed
xrCore/_rect.h: Fixed compilation.
1 parent 5c88705 commit 6f3dbc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xrCore/_rect.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ typedef _rect<int> Irect;
8989
template <class T>
9090
BOOL _valid(const _rect<T>& m)
9191
{
92-
return lt._valid() && rb._valid();
92+
return m.lt._valid() && m.rb._valid();
9393
}
9494

9595
#endif

0 commit comments

Comments
 (0)