makerom: misc

This commit is contained in:
applestash
2014-09-22 20:54:26 +10:00
parent 0e950c4274
commit b240ea8045
4 changed files with 28 additions and 21 deletions
+6 -2
View File
@@ -139,8 +139,12 @@ int SetCardInfoBitmask(cardinfo_hdr *hdr, cci_settings *set)
}
str = set->rsf->CardInfo.CryptoType;
if(!str)
bitmask |= 0;//(3*0x40);
if(!str) {
if(set->options.useExternalSdkCardInfo)
bitmask |= (3*0x40);
else
bitmask |= 0;
}
else{
int val = strtol(str,NULL,10);
if(val < 0 || val > 3) {