Add an error icon to the C Runtime termination message box.
Patch by Lee Schröder.

CORE-6886 #resolve #comment Committed in r58157, thanks :)

svn path=/trunk/; revision=58157
This commit is contained in:
Hermès Bélusca-Maïto 2013-01-11 22:35:44 +00:00
parent 3f0a0ef2c3
commit 741b1a9b33

View file

@ -33,7 +33,7 @@ abort (
(msvcrt_error_mode == _OUT_TO_MSGBOX))
{
/* Output a message box */
__crt_MessageBoxA(abort_msg, MB_OK);
__crt_MessageBoxA(abort_msg, MB_OK | MB_ICONERROR);
}
else
{