Skip to content

Commit

Permalink
Fixed invalid image constructor reference in vgademo
Browse files Browse the repository at this point in the history
  • Loading branch information
drwonky committed Mar 27, 2020
1 parent cecf4c9 commit f9e85bf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vgademo.cpp
Expand Up @@ -67,10 +67,10 @@ int main(void)
h=hyp;

printf("Building...\n");
image box(w,h);
image boxc(w,h);
image boxd(w*2,h*2);
image boxe(w/2,h/2);
canvas box(w,h);
canvas boxc(w,h);
canvas boxd(w*2,h*2);
canvas boxe(w/2,h/2);
image mytext;
// mytext.setpalette(display->getpalette());

Expand Down

0 comments on commit f9e85bf

Please sign in to comment.