video_mode

The current video mode; determines the resolution of the video device . The following resolutions are available:

Range:

1 320x200
2 320x240
3 320x400
4 400x300
5 512x384
6 640x480 - (default mode)
7 800x600
8 1024x768
9 1280x1024
10 1400x1050
11 1600x1200

Type:

var

Modified by:

video_switch

Remarks:

Example:

var video_mode = 6; // C-Script: start in 640x480 resolution
var video_screen = 1; // C-Script: start settings for Fullscreen

function main() 
{ 
  video_mode = 6; // lite-C: start in 640x480 resolution
  video_screen = 1; // lite-C: start settings for Fullscreen
  wait(1)
  ...
} 

See also:

video_switch, video_screen, screen_size ► latest version online