Merge pull request #514 from dreambucket13/main

set pen for text to 15 for better visibility
This commit is contained in:
Philip Howard 2022-09-21 09:18:45 +01:00 committed by GitHub
commit 675de25985
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ int main() {
graphics.set_pen(0); graphics.set_pen(0);
graphics.clear(); graphics.clear();
graphics.set_pen(1); graphics.set_pen(15);
graphics.set_font("bitmap8"); graphics.set_font("bitmap8");
graphics.text("Hello World", {0, 0}, 296); graphics.text("Hello World", {0, 0}, 296);
graphics.text("Has this worked?!", {0, 16}, 296); graphics.text("Has this worked?!", {0, 16}, 296);