From 318613e783c06b46241e75d520354bbbaae0a2a2 Mon Sep 17 00:00:00 2001 From: zeromus Date: Tue, 25 Oct 2016 06:02:33 +0000 Subject: [PATCH] add savetype hardcode for puzzler world --- desmume/src/mc.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/desmume/src/mc.cpp b/desmume/src/mc.cpp index d5c264312..4ae4ce71b 100644 --- a/desmume/src/mc.cpp +++ b/desmume/src/mc.cpp @@ -632,6 +632,7 @@ void BackupDevice::reset() else if(!memcmp(gameInfo.header.gameCode,"AH5", 3)) addr_size = 1; //over the hedge else if(!memcmp(gameInfo.header.gameCode,"AVH", 3)) addr_size = 1; //over the hedge - Hammy Goes Nuts! else if(!memcmp(gameInfo.header.gameCode,"AQ3", 3)) addr_size = 1; //spider-man 3 + else if(!memcmp(gameInfo.header.gameCode,"BPV", 3)) addr_size = 2; //puzzler world (should be eeprom 64KBits) //if we found a whitelist match, we dont need to run detection if(addr_size) state = RUNNING;