diff --git a/Source/Engine/Platform/Windows/WindowsPlatform.cpp b/Source/Engine/Platform/Windows/WindowsPlatform.cpp index 397842d60..1714e9dba 100644 --- a/Source/Engine/Platform/Windows/WindowsPlatform.cpp +++ b/Source/Engine/Platform/Windows/WindowsPlatform.cpp @@ -443,11 +443,12 @@ DialogResult MessageBox::Show(Window* parent, const StringView& text, const Stri flags |= MB_ICONHAND; break; case MessageBoxIcon::Information: + case MessageBoxIcon::Question: flags |= MB_ICONINFORMATION; break; - case MessageBoxIcon::Question: - flags |= MB_ICONQUESTION; - break; + //case MessageBoxIcon::Question: + // flags |= MB_ICONQUESTION; + // break; case MessageBoxIcon::Stop: flags |= MB_ICONSTOP; break;