appstub.linux signal handler 11

BlitzMax Forums/BlitzMax Programming/appstub.linux signal handler 11

Vertex(Posted 2007) [#1]
Hi!

SuperStrict

Local Modes:Int, Index:Int
Local Width:Int, Height:Int, Depth:Int, Hertz:Int

SetGraphicsDriver(GLGraphicsDriver())
Modes = CountGraphicsModes()
Print(Modes + " graphics modes avariable:")
For Index = 0 Until Modes
	GetGraphicsMode(Index, Width, Height, Depth, Hertz)
	Print(" " + Index + ") [" + Width + ":" + Height + "] " + ..
	      "by " + Depth + "bit" + " and " + Hertz + "hz")
Next

End


On Ubuntu there are 105 graphics modes, but the application terminates by Index 12 with the exception:
"appstub.linux signal handler 11"

When I comment Print out, there are no problems.

On Windows run it fine.

Whats wrong? Any user rights, needed libs or so on?

cu olli