From fdd6fdcb2c630b75ab30deec1a022417feeaea7c Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Wed, 18 Jun 2003 07:16:31 +0000 Subject: [PATCH] Removed C_MEM_MAX_SIZE Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1073 --- src/dosbox.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/dosbox.cpp b/src/dosbox.cpp index fc53a725..a1b07714 100644 --- a/src/dosbox.cpp +++ b/src/dosbox.cpp @@ -172,8 +172,7 @@ void DOSBOX_Init(void) { secprop->AddInitFunction(&IO_Init); secprop->AddInitFunction(&MEM_Init); - /* Keep 1 mb free for video memory some day */ - secprop->Add_int("memsize",C_MEM_MAX_SIZE-1); + secprop->Add_int("memsize",8); //Default to 8 mb total memory secprop->AddInitFunction(&CALLBACK_Init); secprop->AddInitFunction(&PIC_Init); secprop->AddInitFunction(&PROGRAMS_Init);