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;