From 02dce2632bcf6e9e4eff24a8bdbcf8689f8a9f8c Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 1 Jul 2013 11:54:49 +0200 Subject: [PATCH] (libretro-test-gl) Add missing 512x512 resolution --- libretro-test-gl/libretro-test.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libretro-test-gl/libretro-test.c b/libretro-test-gl/libretro-test.c index 9aa9be4ad9..df5c513713 100644 --- a/libretro-test-gl/libretro-test.c +++ b/libretro-test-gl/libretro-test.c @@ -333,6 +333,11 @@ static void update_variables(void) width = 512; height = 384; } + else if (strcmp(var.value, "512x512") == 0) + { + width = 512; + height = 512; + } else if (strcmp(var.value, "640x240") == 0) { width = 640;