Update bootstrap source

This commit is contained in:
Dave Brown 2019-11-11 13:10:30 +00:00
parent 63817939ec
commit b04514a198
20 changed files with 70 additions and 55 deletions

View file

@ -101,6 +101,9 @@ OPT_Node OPB_NewLeaf (OPT_Object obj)
}
node->obj = obj;
node->typ = obj->typ;
if ((((obj->mode == 1 && __IN(obj->typ->comp, 0x0c, 32))) && obj->typ->sysflag != 0)) {
node->readonly = 1;
}
return node;
}