Why wont it come on?

Blitz3D Forums/Blitz3D Beginners Area/Why wont it come on?

Clique(Posted 2004) [#1]
I cant open up Blitz3D on 32 true color only 16?, I have recently updated my computer but i still need a gfx card, so for now it runs on 32mb onboard does any one know why this is?


puki(Posted 2004) [#2]
Does your onboard graphics card support 32bit?


cermit(Posted 2004) [#3]
; CountGfxModes3D()
; -----------------

Graphics 800,600,0,2

For i=1 To CountGfxModes3D()

	Print "Mode "+i+": ("+GfxModeWidth(i)+"x"+GfxModeHeight(i)+"x"+GfxModeDepth(i)+")"

Next

WaitKey()


you can check what you computer supports with this code from the command reference, it will show you the resolutions and bit modes you can use.