diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-26 12:45:38 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-26 12:45:38 +0200 |
commit | 991e6c92abd26435169ad7ea0df2622685cac6d1 (patch) | |
tree | dc75b4660e5837015e93afd6cc6abcbc92c6e86b /platform/windows/gl_manager_windows_native.cpp | |
parent | 052b1221085eb874fe4020ffc45a2cbbebebc4f1 (diff) | |
parent | 32c83a228dff7a1f485ab208dff773c3fa74b133 (diff) | |
download | redot-engine-991e6c92abd26435169ad7ea0df2622685cac6d1.tar.gz |
Merge pull request #96923 from Repiteo/style/warning-admonition
Style: Add `WARNING:` as new comment admonition
Diffstat (limited to 'platform/windows/gl_manager_windows_native.cpp')
-rw-r--r-- | platform/windows/gl_manager_windows_native.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/windows/gl_manager_windows_native.cpp b/platform/windows/gl_manager_windows_native.cpp index 8590c46d12..af703f4dfa 100644 --- a/platform/windows/gl_manager_windows_native.cpp +++ b/platform/windows/gl_manager_windows_native.cpp @@ -452,8 +452,8 @@ Error GLManagerNative_Windows::window_create(DisplayServer::WindowID p_window_id return FAILED; } - // WARNING: p_window_id is an eternally growing integer since popup windows keep coming and going - // and each of them has a higher id than the previous, so it must be used in a map not a vector + // WARNING: `p_window_id` is an eternally growing integer since popup windows keep coming and going + // and each of them has a higher id than the previous, so it must be used in a map not a vector. _windows[p_window_id] = win; // make current |