From a66dc182262edb570f079dce3c49e7cef32241c7 Mon Sep 17 00:00:00 2001 From: Ivan Izaguirre Date: Mon, 15 Jan 2024 23:54:15 +0100 Subject: [PATCH] Fix Base64a boot test --- setup.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.go b/setup.go index 14e1e69..51554f3 100644 --- a/setup.go +++ b/setup.go @@ -136,7 +136,7 @@ func (a *Apple2) SetForceCaps(value bool) { } func (a *Apple2) loadRom(filename string) error { - if a.board == "base64a" && isInternalResource(filename) { + if a.board == "base64a" && filename == "" { // The ROM of the base64a has several file and pages loadBase64aRom(a) return nil