summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorめぐみ発動機 (isVowel / GreenWing) <[email protected]>2021-11-22 02:06:52 +0900
committerGitHub <[email protected]>2021-11-21 18:06:52 +0100
commit924b1c7b0cdf25ea65fe10f271efa7a9fa596254 (patch)
treee92944b8b4c6ab14dfc2dfe86d7b3f8d949baf85 /src
parent478b70e53e2729a6976443a2bae2349e1e087dd3 (diff)
downloadraylib-924b1c7b0cdf25ea65fe10f271efa7a9fa596254.tar.gz
raylib-924b1c7b0cdf25ea65fe10f271efa7a9fa596254.zip
fixed typo: aproximation to approximation (#2164)
Diffstat (limited to 'src')
-rw-r--r--src/raylib.h2
1 files changed, 1 insertions, 1 deletions
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