diff options
Diffstat (limited to 'linden/indra/llwindow/llwindowwin32.cpp')
-rw-r--r-- | linden/indra/llwindow/llwindowwin32.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/linden/indra/llwindow/llwindowwin32.cpp b/linden/indra/llwindow/llwindowwin32.cpp index 047fa31..3729a71 100644 --- a/linden/indra/llwindow/llwindowwin32.cpp +++ b/linden/indra/llwindow/llwindowwin32.cpp | |||
@@ -1575,7 +1575,9 @@ void LLWindowWin32::gatherInput() | |||
1575 | 1575 | ||
1576 | while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE) && msg_count < MAX_MESSAGE_PER_UPDATE) | 1576 | while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE) && msg_count < MAX_MESSAGE_PER_UPDATE) |
1577 | { | 1577 | { |
1578 | mCallbacks->handlePingWatchdog(this, "Main:TranslateGatherInput"); | ||
1578 | TranslateMessage(&msg); | 1579 | TranslateMessage(&msg); |
1580 | mCallbacks->handlePingWatchdog(this, "Main:DispatchGatherInput"); | ||
1579 | DispatchMessage(&msg); | 1581 | DispatchMessage(&msg); |
1580 | msg_count++; | 1582 | msg_count++; |
1581 | 1583 | ||
@@ -1602,7 +1604,7 @@ void LLWindowWin32::gatherInput() | |||
1602 | } | 1604 | } |
1603 | } | 1605 | } |
1604 | */ | 1606 | */ |
1605 | 1607 | mCallbacks->handlePingWatchdog(this, "Main:AsyncCallbackGatherInput"); | |
1606 | // For async host by name support. Really hacky. | 1608 | // For async host by name support. Really hacky. |
1607 | if (gAsyncMsgCallback && (LL_WM_HOST_RESOLVED == msg.message)) | 1609 | if (gAsyncMsgCallback && (LL_WM_HOST_RESOLVED == msg.message)) |
1608 | { | 1610 | { |