From 7181b5b67722bf2492eb5a2be1b3ea2c96b19123 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 23 Oct 2019 14:50:14 -0400 Subject: [PATCH] v0.7.5e: improved the wording/styling of the desktop error dialog --- .../shatteredpixeldungeon/desktop/DesktopLauncher.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/desktop/src/com/shatteredpixel/shatteredpixeldungeon/desktop/DesktopLauncher.java b/desktop/src/com/shatteredpixel/shatteredpixeldungeon/desktop/DesktopLauncher.java index 48a0c8705..a57aa434c 100644 --- a/desktop/src/com/shatteredpixel/shatteredpixeldungeon/desktop/DesktopLauncher.java +++ b/desktop/src/com/shatteredpixel/shatteredpixeldungeon/desktop/DesktopLauncher.java @@ -42,9 +42,9 @@ public class DesktopLauncher { PrintWriter pw = new PrintWriter(sw); throwable.printStackTrace(pw); pw.flush(); - JOptionPane.showMessageDialog(null, "Shattered Pixel Dungeon has crashed! Sorry about that!\n\n" + + JOptionPane.showMessageDialog(null, "Shattered Pixel Dungeon has crashed, sorry about that!\n\n" + "If you could, please email this error message to me and I'll get it fixed (Evan@ShatteredPixel.com):\n\n" + - sw.toString()); + sw.toString(), "Game Crash!", JOptionPane.ERROR_MESSAGE); Gdx.app.exit(); } });