Added tmdfs mode 4 for 2x 640x480 monitors

This commit is contained in:
2026-07-16 11:14:50 -05:00
parent 4cb3ab8ea8
commit 92a94d0ad6
7 changed files with 194 additions and 6 deletions
@@ -1440,7 +1440,7 @@ int WINAPI WinMain( HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR lpCmdLine, int n
if (token && token[7])
{
int n = atoi(&token[7]);
if ((0 <= n) && (n <= 3)) // 0 - no MFDs, 1 - orginal(5+1=dual & single), 2 - B&W(3 + 1=1 dual), 3 - color(3 + 1=2 dual)
if ((0 <= n) && (n <= 4)) // 0 - no MFDs, 1 - orginal(5+1=dual & single), 2 - B&W(3 + 1=1 dual), 3 - color(3 + 1=2 dual), 4 - split dual 640x480
g_nTypeOfMFDs = n;
}
token = strstr(all_lower, "-trio ");