Skip to content

Commit

Permalink
Rename boards
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanizag committed Jul 28, 2024
1 parent 1938b90 commit 723eb11
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions video.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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)
}

0 comments on commit 723eb11

Please sign in to comment.