THIS IS HOW
I couldn't find this anywhere and guessed it when I saw the 4:3 ratio thingys
This is how...
Ready for this??
Say we have 640x480
We want to find 480 with just the 640 number
We know it's a 4:3 resolution but what does this mean?
You do:
	
	
	
		
That's how...
You divide by the first number which would be
	
	
	
		
Then you times it by the 2nd number
	
	
	
		
TADA! Lets try this on another ratio
Lets find the 16:9 resolution from 1920
	
	
	
		
HOPE THIS HELPS IN YOUR WIDESCREEN RATIO DETECTION AHAW
			
			I couldn't find this anywhere and guessed it when I saw the 4:3 ratio thingys
This is how...
Ready for this??
Say we have 640x480
We want to find 480 with just the 640 number
We know it's a 4:3 resolution but what does this mean?
You do:
		Code:
	
	640 / 4 * 3
	You divide by the first number which would be
		Code:
	
	640 / 4 = 160
	
		Code:
	
	160 * 3 = 480
	TADA! Lets try this on another ratio
Lets find the 16:9 resolution from 1920
		Code:
	
	1920 / 16 * 9 = 1080
	HOPE THIS HELPS IN YOUR WIDESCREEN RATIO DETECTION AHAW