Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/library/doublesizeprint.bas.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ EX DE,HL ;' Save it in DE

LD A,(IX+9) ;'Character

CP 164 ;' > UDG "U" ?
CP 165 ;' >= RND , > UDG "U" ?
JP NC, doubleSizePrintCharEnd

CP 32 ;' < space+1?
CP 32 ;' < space?
JP C, doubleSizePrintCharEnd

CP 144 ;' >144?
CP 144 ;' >= UDG "A" ?
JP NC, doubleSizePrintCharUDGAddress

LD L,A
Expand Down