From 9dc4559375d2de69f70037a1935a1ebabdcefa33 Mon Sep 17 00:00:00 2001 From: "John \"Elwin\" Edwards" Date: Sat, 26 Apr 2014 08:52:26 -0700 Subject: [PATCH] rogue5: save the game when SIGHUP is received. This vital feature was turned off by default, requiring DUMP to be defined to turn it on. DUMP has the opposite effect in the other games. --- rogue5/mach_dep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rogue5/mach_dep.c b/rogue5/mach_dep.c index f2f2fa1..6a186ff 100644 --- a/rogue5/mach_dep.c +++ b/rogue5/mach_dep.c @@ -165,7 +165,7 @@ getltchars(void) void setup(void) { -#ifdef DUMP +#ifndef DUMP md_onsignal_autosave(); #else md_onsignal_default();