Tweak notify_fatal_error message box title, might not be an assert failed

This commit is contained in:
Maxime Coste 2015-08-14 13:16:06 +01:00
parent 92d3178305
commit 97b871d49e

View File

@ -28,7 +28,7 @@ private:
bool notify_fatal_error(const String& msg)
{
#if defined(__CYGWIN__)
int res = MessageBox(NULL, msg.c_str(), "Kakoune: assert failed",
int res = MessageBox(NULL, msg.c_str(), "Kakoune: fatal error",
MB_OKCANCEL | MB_ICONERROR);
switch (res)
{