From af3926af4b81fdd72c2b40617675f8de15fa17cc Mon Sep 17 00:00:00 2001 From: Ray Date: Thu, 4 Mar 2021 11:51:54 +0100 Subject: REVIEWED: Examples to new enum values --- examples/textures/textures_draw_tiled.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/textures') diff --git a/examples/textures/textures_draw_tiled.c b/examples/textures/textures_draw_tiled.c index faf2d171..7d8a3c41 100644 --- a/examples/textures/textures_draw_tiled.c +++ b/examples/textures/textures_draw_tiled.c @@ -27,7 +27,7 @@ int main(int argc, char **argv) // NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required) Texture texPattern = LoadTexture("resources/patterns.png"); - SetTextureFilter(texPattern, FILTER_TRILINEAR); // Makes the texture smoother when upscaled + SetTextureFilter(texPattern, TEXTURE_FILTER_TRILINEAR); // Makes the texture smoother when upscaled // Coordinates for all patterns inside the texture const Rectangle recPattern[] = { -- cgit v1.2.3