mirror of https://github.com/mgba-emu/mgba.git
Fix overlooked crc32 call
This commit is contained in:
parent
38187bac7a
commit
4cf5b533fb
|
@ -443,7 +443,7 @@ void GBAApplyPatch(struct GBA* gba, struct Patch* patch) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
gba->memory.romSize = patchedSize;
|
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) {
|
void GBATimerUpdateRegister(struct GBA* gba, int timer) {
|
||||||
|
|
Loading…
Reference in New Issue