Skip to content

Commit

Permalink
fixed imports, fixed typeface
Browse files Browse the repository at this point in the history
  • Loading branch information
gthomas committed Jun 4, 2018
1 parent afda134 commit 10e19d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions example/hello.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
#include <unistd.h>
#include "VG/openvg.h"
#include "VG/vgu.h"
#include "fontinfo.h"
#include "shapes.h"
#include "./../src/fontinfo.h"
#include "./../src/shapes.h"

int main() {
const char msg[] = { 'H', 'e', 'l', 'l', 'o', ',', ' ', 'w', 'o', 'r', 'l', 'd', 0 };
Expand All @@ -24,7 +24,7 @@ int main() {
TextMid(width / 2,
height * 0.7,
msg,
SerifTypeface,
SansTypeface,
width / 15);
}
End();
Expand Down

0 comments on commit 10e19d1

Please sign in to comment.