Add a "tall 3" drawing mode.

Pixels with 3:4 aspect ratio. Why not?

Contributed by Nic Soudée (zoner/xylem). Thanks!


git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@2166 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
Adrien Destugues
2016-10-15 18:57:14 +00:00
parent d3a4ced94c
commit 8808625851
12 changed files with 629 additions and 9 deletions

View File

@@ -878,6 +878,10 @@ int Load_INI(T_Config * conf)
if(Video_mode[0].Width < 2*320 || Video_mode[0].Height < 4*200)
Pixel_ratio = PIXEL_SIMPLE;
break;
case PIXEL_TALL3:
if(Video_mode[0].Width < 3*320 || Video_mode[0].Height < 4*200)
Pixel_ratio = PIXEL_SIMPLE;
break;
case PIXEL_QUAD:
if(Video_mode[0].Width < 4*320 || Video_mode[0].Height < 4*200)
Pixel_ratio = PIXEL_SIMPLE;