Skip to content

Commit

Permalink
fix for #157
Browse files Browse the repository at this point in the history
  • Loading branch information
dionoid committed Jun 4, 2024
1 parent ddbb072 commit 7c70353
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
],
"group": {
"kind": "build",
//"isDefault": true
"isDefault": true
},
"problemMatcher": []
},
Expand Down Expand Up @@ -68,7 +68,7 @@
],
"group": {
"kind": "build",
"isDefault": true
//"isDefault": true
},
"problemMatcher": []
}
Expand Down
8 changes: 2 additions & 6 deletions src/P2000.c
Original file line number Diff line number Diff line change
Expand Up @@ -769,9 +769,9 @@ void RefreshScreen_T(void)
reveal display */
fg = 7;
bg = 0;
si = 0;
si = 0; // superimpose
gr = 0;
fl = 0;
fl = 0; // flashing
cg = 1;
hg = 0;
conceal = 0;
Expand Down Expand Up @@ -831,14 +831,10 @@ void RefreshScreen_T(void)
break;
/* Normal height */
case 0x0c:
if (si)
hg = 0;
si = 0;
break;
/* Double height */
case 0x0d:
if (!si)
hg = 0;
si = 1;
if (!found_si)
found_si = 1;
Expand Down

0 comments on commit 7c70353

Please sign in to comment.