mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-29 13:20:25 +02:00
Fix LLE gamepak firmware name lookups (use identifier, not architecture)
This commit is contained in:
@@ -101,6 +101,7 @@ Game::Memory::Memory(Markup::Node node) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
auto Game::Memory::name() const -> string {
|
auto Game::Memory::name() const -> string {
|
||||||
|
if(identifier) return string{identifier, ".", content, ".", type}.downcase();
|
||||||
if(architecture) return string{architecture, ".", content, ".", type}.downcase();
|
if(architecture) return string{architecture, ".", content, ".", type}.downcase();
|
||||||
return string{content, ".", type}.downcase();
|
return string{content, ".", type}.downcase();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user