fullscreen or windowed mode

BlitzMax Forums/BlitzMax Beginners Area/fullscreen or windowed mode

hub(Posted 2010) [#1]
Hi !
how to force your game to start in windowed mode ? graphics ?
(i forgot how to do that and my game run fullscreen). Need to pass to window mode to try a video capture !
Thanks.


Brucey(Posted 2010) [#2]
Set the hertz (3rd) param of Graphics to 0 (zero) for windowed.


hub(Posted 2010) [#3]
Thanks !


Czar Flavius(Posted 2010) [#4]
The third parameter is colour depth, but setting it to 0 will work.


Zeke(Posted 2010) [#5]
yea. 4th parameter is hertz, but just:

Graphics width,height 'Windowed

Graphics width,Height,32 'fullscreen (32 is depth)


stanrol(Posted 2010) [#6]
graphics 800,600,0,2
is for windowed?