Skip to content

Commit

Permalink
fix 'r' pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
koron committed Aug 16, 2024
1 parent b7e8f24 commit e869ad2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions internal/rendertest/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ func main() {
vdp.Render(img)
dur := time.Since(start)
log.Printf("rendered in %d", dur)
log.Printf("start=%s", start)

// output as PNG
f, err := os.Create("test.png")
Expand Down
2 changes: 1 addition & 1 deletion tms9918/pattern.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ var ReferencePattern = []uint8{
0x00, 0x00, 0xF8, 0x88, 0x88, 0x88, 0xF8, 0x00, // o
0x00, 0x00, 0xF0, 0x88, 0xF0, 0x80, 0x80, 0x00, // p
0x00, 0x00, 0xF8, 0x88, 0xA8, 0x90, 0xE0, 0x00, // q
0x00, 0x00, 0xF8, 0x88, 0xF8, 0xA0, 0x90, 0x00, // r
0x00, 0x00, 0xF0, 0x88, 0xF0, 0xA0, 0x90, 0x00, // r
0x00, 0x00, 0x78, 0x80, 0x70, 0x08, 0xF0, 0x00, // s
0x00, 0x00, 0xF8, 0x20, 0x20, 0x20, 0x20, 0x00, // t
0x00, 0x00, 0x88, 0x88, 0x88, 0x88, 0x70, 0x00, // u
Expand Down

0 comments on commit e869ad2

Please sign in to comment.