makerom: bug fix

This commit is contained in:
applestash
2014-09-21 02:34:39 +10:00
parent 1338180016
commit 0545c49530
+1 -1
View File
@@ -990,7 +990,7 @@ int SetARM11KernelDescOtherCapabilities(ARM11KernelCapabilityDescriptor *desc, r
fprintf(stderr,"[EXHEADER ERROR] Invalid memory type: \"%s\"\n",rsf->AccessControlInfo.MemoryType);
return EXHDR_BAD_RSF_OPT;
}
otherCapabilities = (otherCapabilities & 0xffffff0f) | memType << 8;
otherCapabilities = (otherCapabilities & 0xfffff0ff) | (memType & 7) << 8;
}
if(otherCapabilities){