From 33691ba5e6b25b72061a3a9f5f47d6cb7f6782ee Mon Sep 17 00:00:00 2001 From: Jasmine Iwanek Date: Tue, 23 Nov 2021 15:47:22 -0500 Subject: [PATCH] Default memory to 64k Corrects silly config mistake on 5150 when you run 86box without options --- src/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.c b/src/config.c index 5fb87fc01..f544e3919 100644 --- a/src/config.c +++ b/src/config.c @@ -2060,7 +2060,7 @@ config_load(void) /* Unmute the CD audio on the first CD-ROM drive. */ cdrom[0].sound_on = 1; - mem_size = 640; + mem_size = 64; isartc_type = 0; for (i = 0; i < ISAMEM_MAX; i++) isamem_type[i] = 0;