here is what is surprising, I saw in another post the suggestion to precede the _DesktopHeight command with the _Delay .5 command, example :
_Title "RoCoLoco - Working..."
tiles = grid * grid ' total number of tiles on board
_Delay .5
Screen _NewImage(_DesktopHeight * .80, _DesktopHeight * .80, 32)
tilesize = (_DesktopHeight * .80) / grid
Cls , _RGB(77, 77, 77)
It works. The program runs.
well seen @SMcNeill
the question remains why it works without this addition with version 0.50 of qb64pe...
_Title "RoCoLoco - Working..."
tiles = grid * grid ' total number of tiles on board
_Delay .5
Screen _NewImage(_DesktopHeight * .80, _DesktopHeight * .80, 32)
tilesize = (_DesktopHeight * .80) / grid
Cls , _RGB(77, 77, 77)
It works. The program runs.
well seen @SMcNeill
the question remains why it works without this addition with version 0.50 of qb64pe...