From 6e107cb54c1c9c62e4a347fe1211e165301fafd7 Mon Sep 17 00:00:00 2001 From: Leonardo Date: Mon, 25 May 2020 23:15:36 -0300 Subject: [PATCH] update readme example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6cdbaae..021fa8e 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ fc_cook(font); const char hello[] = "Hello, world!"; fc_character_mapping output[32]; -int count = fc_render(font, text, strlen(hello), output); +int count = fc_render(font, text, strlen(hello), &output); for (int i = 0; i < count; i++) { render(texture, output[i].source, output[i].target }