summaryrefslogtreecommitdiffstats
path: root/platform/windows/display_server_windows.cpp
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-09-12 12:03:59 -0500
committerThaddeus Crews <repiteo@outlook.com>2024-09-25 09:44:42 -0500
commit32c83a228dff7a1f485ab208dff773c3fa74b133 (patch)
tree31acc26b9cafc711478c287b1e26fe87827830a6 /platform/windows/display_server_windows.cpp
parent0a9d8f04c10870c0f9f7bbd2e0505edc8494e299 (diff)
downloadredot-engine-32c83a228dff7a1f485ab208dff773c3fa74b133.tar.gz
Style: Add `WARNING:` as new comment admonition
Diffstat (limited to 'platform/windows/display_server_windows.cpp')
-rw-r--r--platform/windows/display_server_windows.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/windows/display_server_windows.cpp b/platform/windows/display_server_windows.cpp
index ed9d5244a3..5b166d0075 100644
--- a/platform/windows/display_server_windows.cpp
+++ b/platform/windows/display_server_windows.cpp
@@ -3962,9 +3962,9 @@ LRESULT DisplayServerWindows::WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARA
}
}
- // WARNING: we get called with events before the window is registered in our collection
+ // WARNING: We get called with events before the window is registered in our collection
// specifically, even the call to CreateWindowEx already calls here while still on the stack,
- // so there is no way to store the window handle in our collection before we get here
+ // so there is no way to store the window handle in our collection before we get here.
if (!window_created) {
// don't let code below operate on incompletely initialized window objects or missing window_id
return _handle_early_window_message(hWnd, uMsg, wParam, lParam);