Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cursor colour anomaly when changing character with POKE #191

Closed
robhagemans opened this issue Jul 6, 2022 · 1 comment
Closed

Cursor colour anomaly when changing character with POKE #191

robhagemans opened this issue Jul 6, 2022 · 1 comment
Assignees
Labels

Comments

@robhagemans
Copy link
Owner

Cursor colour anomaly when changing character with POKE

Problem
In VGA SCREEN 0, the colour of the cursor should equal the attribute of the underlying character. However, if we change the attribute with POKE, the cursor does not change accordingly.

Steps

  1. Run program below

What happens
Cursor stays grey (COLOR 7)

What was expected
Cursor becomes red (COLOR 4)

Program
10 DEF SEG=&HB800
15 CLS: PRINT"test"
20 LOCATE 1,1,1,0,8
30 FOR I=1 TO 8052 STEP 2
40 POKE I,4
50 NEXT
100 GOTO 100

Notes

PC-BASIC version: 2.0.4
Operating system version: all

@robhagemans
Copy link
Owner Author

Fixed by dd040b1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant