mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2024-11-14 21:37:42 -07:00
don't calculate the CRC checksum of ROMs on load
the value isn't used anywhere anyway
This commit is contained in:
parent
c32e83f140
commit
1649c0e089
@ -22,7 +22,6 @@
|
||||
#include "DSi.h"
|
||||
#include "NDSCart.h"
|
||||
#include "ARM.h"
|
||||
#include "CRC32.h"
|
||||
#include "DSi_AES.h"
|
||||
#include "Platform.h"
|
||||
#include "Config.h"
|
||||
@ -485,7 +484,6 @@ u8 TransferCmd[8];
|
||||
bool CartInserted;
|
||||
u8* CartROM;
|
||||
u32 CartROMSize;
|
||||
u32 CartCRC;
|
||||
u32 CartID;
|
||||
bool CartIsHomebrew;
|
||||
bool CartIsDSi;
|
||||
@ -932,9 +930,6 @@ bool LoadROM(const char* path, const char* sram, bool direct)
|
||||
fclose(f);
|
||||
//CartROM = f;
|
||||
|
||||
CartCRC = CRC32(CartROM, CartROMSize);
|
||||
printf("ROM CRC32: %08X\n", CartCRC);
|
||||
|
||||
ROMListEntry romparams;
|
||||
if (!ReadROMParams(gamecode, &romparams))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user