Cambiado el modo de fullscreen a SDL_WINDOW_FULLSCREEN_DESKTOP (como estaba en el CC original)

This commit is contained in:
2024-08-27 09:37:16 +02:00
parent 49cffb3669
commit 7a3c2ffe71
4 changed files with 21 additions and 46 deletions

View File

@@ -8,11 +8,11 @@
#include "../const.h"
#include <vector>
#define FILTER_NEAREST 0
#define FILTER_LINEAL 1
#define SCREEN_FILTER_NEAREST 0
#define SCREEN_FILTER_LINEAL 1
#define VIDEO_MODE_WINDOW 0
#define VIDEO_MODE_FULLSCREEN 1
#define SCREEN_VIDEO_MODE_WINDOW 0
#define SCREEN_VIDEO_MODE_FULLSCREEN 1
class Screen
{