From 664ab85f76d59023684e077ea5654bbaeea3abc0 Mon Sep 17 00:00:00 2001 From: omar Date: Mon, 2 Apr 2018 17:31:51 +0200 Subject: [PATCH] Examples: Tweak comments. (#1704, #1708). --- examples/directx10_example/imgui_impl_dx10.cpp | 2 +- examples/directx11_example/imgui_impl_dx11.cpp | 2 +- examples/directx12_example/imgui_impl_dx12.cpp | 2 +- examples/directx9_example/imgui_impl_dx9.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/directx10_example/imgui_impl_dx10.cpp b/examples/directx10_example/imgui_impl_dx10.cpp index 60c79d52..ae6dadc9 100644 --- a/examples/directx10_example/imgui_impl_dx10.cpp +++ b/examples/directx10_example/imgui_impl_dx10.cpp @@ -275,7 +275,7 @@ static bool ImGui_ImplWin32_UpdateMouseCursor() return true; } -// MingW (which is stuck in the past) doesn't have this Vista-era define.. +// Allow compilation with old Windows SDK. MinGW doesn't have default _WIN32_WINNT/WINVER versions. #ifndef WM_MOUSEHWHEEL #define WM_MOUSEHWHEEL 0x020E #endif diff --git a/examples/directx11_example/imgui_impl_dx11.cpp b/examples/directx11_example/imgui_impl_dx11.cpp index f319d2c4..6249120a 100644 --- a/examples/directx11_example/imgui_impl_dx11.cpp +++ b/examples/directx11_example/imgui_impl_dx11.cpp @@ -282,7 +282,7 @@ static bool ImGui_ImplWin32_UpdateMouseCursor() return true; } -// MingW (which is stuck in the past) doesn't have this Vista-era define.. +// Allow compilation with old Windows SDK. MinGW doesn't have default _WIN32_WINNT/WINVER versions. #ifndef WM_MOUSEHWHEEL #define WM_MOUSEHWHEEL 0x020E #endif diff --git a/examples/directx12_example/imgui_impl_dx12.cpp b/examples/directx12_example/imgui_impl_dx12.cpp index 04df1dbc..d327c36e 100644 --- a/examples/directx12_example/imgui_impl_dx12.cpp +++ b/examples/directx12_example/imgui_impl_dx12.cpp @@ -253,7 +253,7 @@ static bool ImGui_ImplWin32_UpdateMouseCursor() return true; } -// MingW (which is stuck in the past) doesn't have this Vista-era define.. +// Allow compilation with old Windows SDK. MinGW doesn't have default _WIN32_WINNT/WINVER versions. #ifndef WM_MOUSEHWHEEL #define WM_MOUSEHWHEEL 0x020E #endif diff --git a/examples/directx9_example/imgui_impl_dx9.cpp b/examples/directx9_example/imgui_impl_dx9.cpp index aa40d34a..967e07e3 100644 --- a/examples/directx9_example/imgui_impl_dx9.cpp +++ b/examples/directx9_example/imgui_impl_dx9.cpp @@ -215,7 +215,7 @@ static bool ImGui_ImplWin32_UpdateMouseCursor() return true; } -// MingW (which is stuck in the past) doesn't have this Vista-era define.. +// Allow compilation with old Windows SDK. MinGW doesn't have default _WIN32_WINNT/WINVER versions. #ifndef WM_MOUSEHWHEEL #define WM_MOUSEHWHEEL 0x020E #endif