diff options
Diffstat (limited to 'win32/mingw.c')
-rw-r--r-- | win32/mingw.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/win32/mingw.c b/win32/mingw.c index 4398f5462..49e1bcfa4 100644 --- a/win32/mingw.c +++ b/win32/mingw.c | |||
@@ -2507,3 +2507,9 @@ windows_env(void) | |||
2507 | } | 2507 | } |
2508 | return FALSE; | 2508 | return FALSE; |
2509 | } | 2509 | } |
2510 | |||
2511 | void FAST_FUNC | ||
2512 | change_critical_error_dialogs(const char *newval) | ||
2513 | { | ||
2514 | SetErrorMode(strcmp(newval, "1") == 0 ? 0 : SEM_FAILCRITICALERRORS); | ||
2515 | } | ||