Graphics command needs....?

BlitzMax Forums/BlitzMax Beginners Area/Graphics command needs....?

Damien Sturdy(Posted 2004) [#1]
hey peeps.

this is no doubs stupid, but the following code wont work and throws up a "graphics mode doesnt exist"

framework brl.max2d
Import brl.random

Graphics 640,480,16,60
end
'.......more code that uses random module etc etc etc


yet the following code works but goves a bulky EXE...

graphics 640,480,16,60




WHat exactly is happening here that I'm missunderstanding!? hehe


ImaginaryHuman(Posted 2004) [#2]
Maybe you need to include more modules


Kanati(Posted 2004) [#3]
try framework brl.glmax2d instead of just max2d


Wayward(Posted 2004) [#4]
Try 'framework brl.glmax2d' instead of 'framework brl.max2d'.


Damien Sturdy(Posted 2004) [#5]
done and done. thanks :)