Don't use static functions

Signed-off-by: Madhav Kanbur <abcdjdj@gmail.com>
This commit is contained in:
Madhav Kanbur
2021-01-15 10:12:58 +05:30
parent 316996b1d1
commit 18ada67152
2 changed files with 2 additions and 2 deletions

View File

@ -620,7 +620,7 @@ void DoSavestate(Savestate* file)
if (HasSolarSensor) GBACart_SolarSensor::DoSavestate(file);
}
static void LoadROMCommon(const char *sram)
void LoadROMCommon(const char *sram)
{
char gamecode[5] = { '\0' };
memcpy(&gamecode, CartROM + 0xAC, 4);

View File

@ -885,7 +885,7 @@ void DecryptSecureArea(u8* out)
}
}
static bool LoadROMCommon(u32 filelength, const char *sram, bool direct)
bool LoadROMCommon(u32 filelength, const char *sram, bool direct)
{
u32 gamecode;
memcpy(&gamecode, CartROM + 0x0C, 4);