--- nono/vm/sram.cpp 2026/04/29 17:04:56 1.1.1.7 +++ nono/vm/sram.cpp 2026/04/29 17:04:59 1.1.1.8 @@ -65,7 +65,7 @@ SRAMDevice::Read8(uint32 addr) uint32 data; // ホストファイル起動モードなら起動アドレスとして Pluto-X を見せる。 - if (gMainApp.host_file) { + if (gMainApp.exec_file) { data = PeekHostBoot(offset); if ((int32)data >= 0) { if ((offset & 1) == 0) { @@ -88,7 +88,7 @@ SRAMDevice::Read16(uint32 addr) uint32 data; // ホストファイル起動モードなら起動アドレスとして Pluto-X を見せる。 - if (gMainApp.host_file) { + if (gMainApp.exec_file) { data = PeekHostBoot(offset); if ((int32)data >= 0) { return data; @@ -137,7 +137,7 @@ SRAMDevice::Peek8(uint32 addr) uint32 offset = Decoder(addr); // ホストファイル起動モードなら起動アドレスとして Pluto-X を見せる。 - if (gMainApp.host_file) { + if (gMainApp.exec_file) { uint32 data = PeekHostBoot(offset); if ((int32)data >= 0) { if ((offset & 1) == 0) {