From 723eb116e7bff405afd5314883e8d97be40e8dde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Izaguirre?= Date: Sun, 28 Jul 2024 23:18:52 +0200 Subject: [PATCH] Rename boards --- softSwitches2e.go => boardApple2e.go | 0 softSwitches2.go => boardAppleII.go | 0 base64a.go => boardBase64a.go | 0 video.go | 4 ++-- 4 files changed, 2 insertions(+), 2 deletions(-) rename softSwitches2e.go => boardApple2e.go (100%) rename softSwitches2.go => boardAppleII.go (100%) rename base64a.go => boardBase64a.go (100%) diff --git a/softSwitches2e.go b/boardApple2e.go similarity index 100% rename from softSwitches2e.go rename to boardApple2e.go diff --git a/softSwitches2.go b/boardAppleII.go similarity index 100% rename from softSwitches2.go rename to boardAppleII.go diff --git a/base64a.go b/boardBase64a.go similarity index 100% rename from base64a.go rename to boardBase64a.go diff --git a/video.go b/video.go index 8352f60..392bcc9 100644 --- a/video.go +++ b/video.go @@ -47,7 +47,7 @@ func (v *video) GetCurrentVideoMode() uint32 { isMixMode := v.a.io.isSoftSwitchActive(ioFlagMixed) isSecondPage := v.a.io.isSoftSwitchActive(ioFlagSecondPage) && !v.a.mmu.store80Active - isAltText := v.a.isApple2e && v.a.io.isSoftSwitchActive(ioFlagAltChar) + isAltText := v.a.io.isSoftSwitchActive(ioFlagAltChar) var mode uint32 if isSuperHighResMode { @@ -174,7 +174,7 @@ func (v *video) SupportsLowercase() bool { func DumpTextModeAnsi(a *Apple2) string { is80Columns := a.io.isSoftSwitchActive(ioFlag80Col) isSecondPage := a.io.isSoftSwitchActive(ioFlagSecondPage) && !a.mmu.store80Active - isAltText := a.isApple2e && a.io.isSoftSwitchActive(ioFlagAltChar) + isAltText := a.io.isSoftSwitchActive(ioFlagAltChar) supportsLowercase := a.hasLowerCase return screen.RenderTextModeAnsi(a.video, is80Columns, isSecondPage, isAltText, supportsLowercase, false) }