From abdd2fb0f8abdba2523fdb44376e9181bff35d71 Mon Sep 17 00:00:00 2001 From: ABelliqueux Date: Mon, 7 Jun 2021 10:35:31 +0200 Subject: [PATCH] Remove toxic word from readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 576b131..e5ed44a 100644 --- a/README.md +++ b/README.md @@ -145,7 +145,7 @@ With our setup, this is quite easy ! ``` If you pay attention, you can see that's the same command, but for different file types. TIM files are bitmap images and VAG is the sound format used in this example. -Each time you'll want to add a file type, just duplicate and change `%.vag` to `%.filetype` +Each time you'll want to add a file type, duplicate and change `%.vag` to `%.filetype` Then, in your project folder, copy the makefile from the cube example : @@ -162,7 +162,7 @@ SRCS = main.c \ file_to_embed.ext \ ``` - 2. So this part takes care of converting our data to binary. Now to access them from your program, just use this in your sources : + 2. So this part takes care of converting our data to binary. Now to access them from your program, use this in your sources : ```c extern ulong _binary_filename_extension_start[]; extern ulong _binary_filename_extension_end[];