How to set window instead of fullscreen?

BlitzMax Forums/BlitzMax Programming/How to set window instead of fullscreen?

bytecode77(Posted 2008) [#1]
hi!

sorry for that stupid question, but i dont seem to find any references that explain how to use window mode

in blitz, it simply is
graphics 640,480,32,##2##



ziggy(Posted 2008) [#2]
graphics 640,480,0

The third 0 means 'windowed mode', instead of any full-screen color depth specification.


bytecode77(Posted 2008) [#3]
that seems logic to me :)
thanks dude!