fullscreen or windowed mode
BlitzMax Forums/BlitzMax Beginners Area/fullscreen or windowed mode| 
 | ||
| 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. | 
| 
 | ||
| Set the hertz (3rd) param of Graphics to 0 (zero) for windowed. | 
| 
 | ||
| Thanks ! | 
| 
 | ||
| The third parameter is colour depth, but setting it to 0 will work. | 
| 
 | ||
| yea. 4th parameter is hertz, but just: Graphics width,height 'Windowed Graphics width,Height,32 'fullscreen (32 is depth) | 
| 
 | ||
| graphics 800,600,0,2 is for windowed? |