1
0
Fork 0

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
This commit is contained in:
Peter Veenstra 2016-05-30 11:59:21 +00:00
parent 96e805369a
commit 7cda75c855

View file

@ -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"