fix: vmemu not reading bios due to changes for BASIC not being ported

This commit is contained in:
minjaesong
2023-04-20 23:10:58 +09:00
parent e2c0f13019
commit 7c36495c57
4 changed files with 8 additions and 2 deletions

View File

@@ -45,7 +45,7 @@ object VMSetupBroker {
vmRunners[vm.id] = VMRunnerFactory(vm.assetsDir, vm, "js")
coroutineJobs[vm.id] = GlobalScope.launch {
try {
vmRunners[vm.id]?.executeCommand(vm.roms[0]!!.readAll())
vmRunners[vm.id]?.executeCommand(vm.roms[0].readAll())
}
catch (e: Throwable) {
whatToDoOnVmException(e)