From 7cda75c8556b543559c3bc8c221da05ba413a17c Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Mon, 30 May 2016 11:59:21 +0000 Subject: [PATCH] Allow 64 as input value, so it gets translated to 63 mb, instead of 16 as it currently does, to provide compatibility with 0.74 setups. Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3986 --- src/dosbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dosbox.cpp b/src/dosbox.cpp index 1462fae3..675e90da 100644 --- a/src/dosbox.cpp +++ b/src/dosbox.cpp @@ -370,7 +370,7 @@ void DOSBOX_Init(void) { secprop->AddInitFunction(&MEM_Init);//done secprop->AddInitFunction(&HARDWARE_Init);//done Pint = secprop->Add_int("memsize", Property::Changeable::WhenIdle,16); - Pint->SetMinMax(1,63); + Pint->SetMinMax(1,64); Pint->Set_help( "Amount of memory DOSBox has in megabytes.\n" " This value is best left at its default to avoid problems with some games,\n"