summaryrefslogtreecommitdiff
path: root/src/main-gcu.c
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2011-03-31 01:18:50 +0200
committerBardur Arantsson <bardur@scientician.net>2012-03-29 19:53:56 +0200
commitf9c459680ef61af4387edb352b899c43399698c6 (patch)
treec9cbd16c856facc7372374004f15c18ec7683953 /src/main-gcu.c
parentf4b63ea835e9deafa2fb60270c6b53f8a3698256 (diff)
Files: Remove panic saves.
It is NOT a good idea to save the game when memory may already be corrupted.
Diffstat (limited to 'src/main-gcu.c')
-rw-r--r--src/main-gcu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main-gcu.c b/src/main-gcu.c
index 78768286..b762a6f0 100644
--- a/src/main-gcu.c
+++ b/src/main-gcu.c
@@ -589,8 +589,8 @@ static errr Term_xtra_gcu_event(int v)
for (k = 0; (k < 10) && (i == ERR); k++) i = getch();
/* Broken input is special */
- if (i == ERR) exit_game_panic();
- if (i == EOF) exit_game_panic();
+ if (i == ERR) abort();
+ if (i == EOF) abort();
}
/* Do not wait */