Rename crc32 to doCrc32 to avoid symbol naming conflicts

This commit is contained in:
Jeffrey Pfau 2014-10-15 01:41:50 -07:00
parent 24c826e5b1
commit 38187bac7a
4 changed files with 4 additions and 4 deletions

View File

@ -403,7 +403,7 @@ void GBALoadROM(struct GBA* gba, struct VFile* vf, struct VFile* sav, const char
gba->memory.rom = gba->pristineRom;
gba->activeFile = fname;
gba->memory.romSize = gba->pristineRomSize;
gba->romCrc32 = crc32(gba->memory.rom, gba->memory.romSize);
gba->romCrc32 = doCrc32(gba->memory.rom, gba->memory.romSize);
GBASavedataInit(&gba->memory.savedata, sav);
GBAGPIOInit(&gba->memory.gpio, &((uint16_t*) gba->memory.rom)[GPIO_REG_DATA >> 1]);
_checkOverrides(gba, ((struct GBACartridge*) gba->memory.rom)->id);

View File

@ -94,7 +94,7 @@ static uint32_t crc32Table[] = {
0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d
};
uint32_t crc32(const void* buf, size_t size) {
uint32_t doCrc32(const void* buf, size_t size) {
return updateCrc32(0, buf, size);
}

View File

@ -5,7 +5,7 @@
struct VFile;
uint32_t crc32(const void* buf, size_t size);
uint32_t doCrc32(const void* buf, size_t size);
uint32_t updateCrc32(uint32_t crc, const void* buf, size_t size);
uint32_t fileCrc32(struct VFile* file, size_t endOffset);

View File

@ -90,7 +90,7 @@ bool _UPSApplyPatch(struct Patch* patch, void* out, size_t outSize) {
}
patch->vf->seek(patch->vf, 0, SEEK_SET);
if (crc32(out, outSize) != goodCrc32) {
if (doCrc32(out, outSize) != goodCrc32) {
return false;
}
return true;