From 53f1da90ab9170257bc58bb93c19192ba5baec2d Mon Sep 17 00:00:00 2001 From: SarahW Date: Mon, 28 Nov 2016 21:03:23 +0000 Subject: [PATCH] Fixed saving of cache setting that rev 578 broke. --- src/pc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pc.c b/src/pc.c index 561f7f7..c8e7b84 100644 --- a/src/pc.c +++ b/src/pc.c @@ -708,6 +708,7 @@ void saveconfig() config_set_int(NULL, "sndcard", sound_card_current); config_set_int(NULL, "cpu_speed", cpuspeed); config_set_int(NULL, "has_fpu", hasfpu); + config_set_int(NULL, "cache", cache); config_set_int(NULL, "cga_composite", cga_comp); config_set_string(NULL, "disc_a", discfns[0]); config_set_string(NULL, "disc_b", discfns[1]);