Fix overlooked crc32 call

This commit is contained in:
Jeffrey Pfau 2014-10-15 02:13:34 -07:00
parent 38187bac7a
commit 4cf5b533fb
1 changed files with 1 additions and 1 deletions

View File

@ -443,7 +443,7 @@ void GBAApplyPatch(struct GBA* gba, struct Patch* patch) {
return;
}
gba->memory.romSize = patchedSize;
gba->romCrc32 = crc32(gba->memory.rom, gba->memory.romSize);
gba->romCrc32 = doCrc32(gba->memory.rom, gba->memory.romSize);
}
void GBATimerUpdateRegister(struct GBA* gba, int timer) {