From 2d5d71a70d7cc2140772765d118a6c93b9ae35c3 Mon Sep 17 00:00:00 2001 From: TheMrIron2 Date: Wed, 20 Dec 2017 20:29:16 +0000 Subject: [PATCH] Revert + change Increased maximum texture horizontal resolution back to 768 (why was it like this in the first place? Either way, it's easier to just leave it like this than change every texture to be 720x480), increased maximum vertical texture resolution from 480 to 576 --- source/video.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/video.h b/source/video.h index 1dbdc81b..4ea397fe 100644 --- a/source/video.h +++ b/source/video.h @@ -15,8 +15,8 @@ extern "C" { #endif -#define MAX_TEX_WIDTH 720 -#define MAX_TEX_HEIGHT 480 +#define MAX_TEX_WIDTH 768 +#define MAX_TEX_HEIGHT 576 #define MAX_WIDTH 1280 #define MAX_HEIGHT 720