Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update sha256 for Wonder Boy in Monster World (USA, Europe) for proper eeprom assignment #1842

Merged
merged 2 commits into from
Feb 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion mia/medium/mega-drive.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,8 @@ auto MegaDrive::analyzeStorage(vector<u8>& rom, string hash) -> void {
}

//Wonder Boy in Monster World (USA, Europe)
if(hash == "6b2ac36f624f914ad26e32baa87d1253aea9dcfc13d2a5842ecdd2bd4a7a43b9") {
if(hash == "8d905c863b73a1522f6ea734d630beae1b824b9eecb63f899534c02efbde20fd" ||
hash == "6b2ac36f624f914ad26e32baa87d1253aea9dcfc13d2a5842ecdd2bd4a7a43b9") {
eeprom.mode = "X24C01";
eeprom.size = 128;
eeprom.rsda = 0;
Expand Down
Loading