From 924b1c7b0cdf25ea65fe10f271efa7a9fa596254 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=81=E3=81=90=E3=81=BF=E7=99=BA=E5=8B=95=E6=A9=9F=20?= =?UTF-8?q?=28isVowel=20/=20GreenWing=29?= <60494954+pancakevirus@users.noreply.github.com> Date: Mon, 22 Nov 2021 02:06:52 +0900 Subject: [PATCH] fixed typo: aproximation to approximation (#2164) --- src/raylib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raylib.h b/src/raylib.h index 4655bfbc..7f05445b 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -799,7 +799,7 @@ typedef enum { // NOTE 1: Filtering considers mipmaps if available in the texture // NOTE 2: Filter is accordingly set for minification and magnification typedef enum { - TEXTURE_FILTER_POINT = 0, // No filter, just pixel aproximation + TEXTURE_FILTER_POINT = 0, // No filter, just pixel approximation TEXTURE_FILTER_BILINEAR, // Linear filtering TEXTURE_FILTER_TRILINEAR, // Trilinear filtering (linear with mipmaps) TEXTURE_FILTER_ANISOTROPIC_4X, // Anisotropic filtering 4x