summaryrefslogtreecommitdiff
path: root/indra/newview/lltoolpie.h
diff options
context:
space:
mode:
authorDarl <me@darl.cat>2025-07-23 21:06:34 -0500
committerAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2025-07-26 14:02:22 +0300
commit6ed99747750685c8a34d595a0c516bbeeeed4299 (patch)
tree77645c878856fc9d22d22f4b4d511bc5d414d6f7 /indra/newview/lltoolpie.h
parentc4204a9687a6f41e49879db1e24dcb53a372d31d (diff)
Fix incorrectly calculated number in comment and where it was referenced
Diffstat (limited to 'indra/newview/lltoolpie.h')
-rw-r--r--indra/newview/lltoolpie.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lltoolpie.h b/indra/newview/lltoolpie.h
index 9914da905e..ec54e0207d 100644
--- a/indra/newview/lltoolpie.h
+++ b/indra/newview/lltoolpie.h
@@ -102,7 +102,7 @@ private:
MEDIA_FIRST_CLICK_ANY = (1 << 15) - 1, // 0b0111111111111111 (32767)
// Covers all media regardless of other rules or PRIM_MEDIA_FIRST_CLICK_INTERACT
- MEDIA_FIRST_CLICK_BYPASS_MOAP_FLAG = 1 << 15 // 0b10000000000000000 (65535)
+ MEDIA_FIRST_CLICK_BYPASS_MOAP_FLAG = 1 << 15 // 0b10000000000000000 (32768)
};
bool shouldAllowFirstMediaInteraction(const LLPickInfo& info, bool moap_flag);
bool handleMediaClick(const LLPickInfo& info);