From 93f1e31070740245169f102fcd481501bd102f0b Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Wed, 9 Apr 2025 10:45:00 +0200 Subject: Fix typo --- .../notes/2025-04-08-embedding-game-assets-within-your-binary.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/notes/2025-04-08-embedding-game-assets-within-your-binary.md b/content/notes/2025-04-08-embedding-game-assets-within-your-binary.md index 65f5813..8200f14 100644 --- a/content/notes/2025-04-08-embedding-game-assets-within-your-binary.md +++ b/content/notes/2025-04-08-embedding-game-assets-within-your-binary.md @@ -226,12 +226,12 @@ Below is a quick example how to use this new directive. #include const uint8_t image_data[] = { - #embed "image.png" + #embed "image.png" }; int main(void) { - printf("Image size: %d bytes\n", sizeof(image_data)); - return 0; + printf("Image size: %d bytes\n", sizeof(image_data)); + return 0; } ``` -- cgit v1.2.3