Fix Base64a boot test

This commit is contained in:
Ivan Izaguirre 2024-01-15 23:54:15 +01:00
parent 677e1113cb
commit a66dc18226
1 changed files with 1 additions and 1 deletions

View File

@ -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 == "<custom>" {
// The ROM of the base64a has several file and pages
loadBase64aRom(a)
return nil