(libretro-test-gl) Add missing 512x512 resolution

This commit is contained in:
twinaphex 2013-07-01 11:54:49 +02:00
parent 5fb8594215
commit 02dce2632b

View File

@ -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;