Update gambatte

This commit is contained in:
alyosha-tas 2017-07-06 17:55:34 -04:00 committed by GitHub
parent a3e2a94c60
commit 982813fb7e
1 changed files with 2 additions and 1 deletions

View File

@ -629,7 +629,8 @@ int Cartridge::loadROM(const char *romfiledata, unsigned romfilelength, const ch
break;
}
cgb = header[0x0143] >> 7 & (1 ^ forceDmg);
//cgb = header[0x0143] >> 7 & (1 ^ forceDmg);
cgb = forceDmg ? false : true;
std::printf("cgb: %d\n", cgb);
}