Use FCEU_free instead of free for mappers

This commit is contained in:
negativeExponent
2020-02-29 09:52:05 +08:00
parent dc402f473b
commit 46fe43a4f2

View File

@@ -77,7 +77,7 @@ static DECLFW(M235Write) {
static void M235Close(void) {
if (CHRRAM)
free(CHRRAM);
FCEU_free(CHRRAM);
CHRRAM = NULL;
}