diff options
| author | めぐみ発動機 (isVowel / GreenWing) <[email protected]> | 2021-11-22 02:06:52 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-11-21 18:06:52 +0100 |
| commit | 924b1c7b0cdf25ea65fe10f271efa7a9fa596254 (patch) | |
| tree | e92944b8b4c6ab14dfc2dfe86d7b3f8d949baf85 /src | |
| parent | 478b70e53e2729a6976443a2bae2349e1e087dd3 (diff) | |
| download | raylib-924b1c7b0cdf25ea65fe10f271efa7a9fa596254.tar.gz raylib-924b1c7b0cdf25ea65fe10f271efa7a9fa596254.zip | |
fixed typo: aproximation to approximation (#2164)
Diffstat (limited to 'src')
| -rw-r--r-- | src/raylib.h | 2 |
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 |
