mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
[CRT]
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:
parent
3f0a0ef2c3
commit
741b1a9b33
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue