From 066188f6bfcaf38e0433d8e8cb3711d572d030a6 Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Thu, 22 Aug 2024 09:16:33 +0200 Subject: [PATCH] Eliminado el filtro bilineal --- source/main.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/source/main.cpp b/source/main.cpp index d12fcb7..5ff7ea0 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -70,12 +70,6 @@ bool init() } else { - // Set texture filtering to linear - if (!SDL_SetHint(SDL_HINT_RENDER_SCALE_QUALITY, "1")) - { - printf("Warning: Linear texture filtering not enabled!"); - } - // Create window window = SDL_CreateWindow(WINDOW_CAPTION, SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, SCREEN_WIDTH * 2, SCREEN_HEIGHT * 2, SDL_WINDOW_SHOWN); if (window == NULL)