From 19861112c474e5f0f0b6188b41bb97e1fc41f3b5 Mon Sep 17 00:00:00 2001 From: CastimierDev <81444553+CastimierDev@users.noreply.github.com> Date: Sat, 5 Feb 2022 14:21:43 +0100 Subject: fixed grammar mistake --- cheatsheet/raylib_textures.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cheatsheet/raylib_textures.c b/cheatsheet/raylib_textures.c index 211bd22..3da356f 100644 --- a/cheatsheet/raylib_textures.c +++ b/cheatsheet/raylib_textures.c @@ -1,6 +1,6 @@ // Image loading functions - // NOTE: This functions do not require GPU access + // NOTE: These functions do not require GPU access Image LoadImage(const char *fileName); // Load image from file into CPU memory (RAM) Image LoadImageRaw(const char *fileName, int width, int height, int format, int headerSize); // Load image from RAW file data Image LoadImageAnim(const char *fileName, int *frames); // Load image sequence from file (frames appended to image.data) @@ -112,4 +112,4 @@ void SetPixelColor(void *dstPtr, Color color, int format); // Set color formatted into destination pixel pointer int GetPixelDataSize(int width, int height, int format); // Get pixel data size in bytes for certain format - \ No newline at end of file + -- cgit v1.2.3