1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-19 02:22:39 +00:00

Expands information included in ROM load requests.

This commit is contained in:
Thomas Harte
2019-07-19 22:35:22 -04:00
parent 86d709ae01
commit 20670bab2f
13 changed files with 84 additions and 55 deletions
+1 -1
View File
@@ -132,7 +132,7 @@ class ConcreteMachine:
// Load the BIOS if relevant.
if(has_bios()) {
const auto roms = rom_fetcher("MasterSystem", {"bios.sms"});
const auto roms = rom_fetcher("MasterSystem", { ROMMachine::ROM("bios.sms") });
if(!roms[0]) {
// No BIOS found; attempt to boot as though it has already disabled itself.
memory_control_ |= 0x08;