View Single Post
  #2  
Old 15-06-2012, 05:48
peterf1999's Avatar
peterf1999 peterf1999 is offline
Die Hard Member
 
Join Date: Nov 2008
Location: Italy
Posts: 928
Thanks: 14
Thanked 983 Times in 236 Posts
peterf1999 is on a distinguished road
Quote:
Originally Posted by Shogum3000 View Post
the resolution is 1280x768
OMG 5:3 resolution is rarely used, however:

Code:
case FloatToStr(GetScreenWidth div GetScreenHeight) of
   
  { 4/3 or 5/4 aspects ratio }
  '1.3' : ARatio:='4_3';
  '1.2' : ARatio:='4_3';
  { 16/9 16/10 or 5:3 aspects ratio}
  '1.8' : ARatio:='16_9';
  '1.6' : ARatio:='16_9';  
  '1.7' : ARatio:='16_9'; 

  end;
Note: The script will use a 16:9 Bmp for full screen display, add the red line to the script.
Reply With Quote