diff options
author | Lars Næsbye Christensen <lars@naesbye.dk> | 2024-02-09 04:25:50 +0100 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-02-12 23:17:22 +0200 |
commit | 7316441f22e516db17f27a6102e012713c2b0ce9 (patch) | |
tree | 4c99f016d481a398453ff34009ac0010090d1a2e /indra/llrender/llrender2dutils.h | |
parent | 3a12af88b779b667ace2dc594f0e8ec48b83b58a (diff) |
llrender: BOOL (int) to real bool
Diffstat (limited to 'indra/llrender/llrender2dutils.h')
-rw-r--r-- | indra/llrender/llrender2dutils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llrender/llrender2dutils.h b/indra/llrender/llrender2dutils.h index 135738c3ba..298b357a38 100644 --- a/indra/llrender/llrender2dutils.h +++ b/indra/llrender/llrender2dutils.h @@ -43,7 +43,7 @@ class LLUUID; extern const LLColor4 UI_VERTEX_COLOR; -BOOL ui_point_in_rect(S32 x, S32 y, S32 left, S32 top, S32 right, S32 bottom); +bool ui_point_in_rect(S32 x, S32 y, S32 left, S32 top, S32 right, S32 bottom); void gl_state_for_2d(S32 width, S32 height); void gl_line_2d(S32 x1, S32 y1, S32 x2, S32 y2); |