summaryrefslogtreecommitdiff
path: root/indra/llwindow
diff options
context:
space:
mode:
authorNyx (Neal Orman) <nyx@lindenlab.com>2012-01-25 15:59:37 -0500
committerNyx (Neal Orman) <nyx@lindenlab.com>2012-01-25 15:59:37 -0500
commit50b67f052a440fba54a05fe32320f6bb84ea43cc (patch)
treee9716527ab736c1d5c92e0d1a4ee11cb071c522f /indra/llwindow
parentc4e0c20cdccc0604a1688ab3664295c1944321e8 (diff)
parent4ef9277761b5faee2825177112939b72c563a4ea (diff)
MERGE - pulling latest viewer-development into pathfinding branch
Diffstat (limited to 'indra/llwindow')
-rw-r--r--indra/llwindow/llwindowwin32.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llwindow/llwindowwin32.cpp b/indra/llwindow/llwindowwin32.cpp
index 954b9f2b15..228fbefd19 100644
--- a/indra/llwindow/llwindowwin32.cpp
+++ b/indra/llwindow/llwindowwin32.cpp
@@ -1747,7 +1747,7 @@ void LLWindowWin32::gatherInput()
LLMemType m1(LLMemType::MTYPE_GATHER_INPUT);
- while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE) && msg_count < MAX_MESSAGE_PER_UPDATE)
+ while ((msg_count < MAX_MESSAGE_PER_UPDATE) && PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
{
mCallbacks->handlePingWatchdog(this, "Main:TranslateGatherInput");
TranslateMessage(&msg);