dige wrote:ForeRunner.exe crashes while start fullscreen view.. there are no further informations...
Tried the provided Aschenbahn example..
Thanks for this information, beside the Intel G965 chipset there seem to be another graphic card which crashes when DirectX7 3D graphic commands are used.
Maybe the
actual version will work already, maybe you can check it once more. Otherwise, the
DirectX9 version will work (hopefully

)...
If not, I would ask you to tell me which graphic card you are using, I would add a filter that no 3D graphic is used with this card in the DirectX7 version.
Thanks,
Michael
PS there is one open issue, which could cause problems (but only if you use more tracks and change between them very fast)...
CreateSprite() seems to fail in around 1 of 500 calls
I know, there won't be a solution for that, but I want to warn others to be careful using it :roll:...
Code: Select all
LockMutex(ThreadMutex)
If CreateSprite(#GoogleMapBitmap,MapX,MapY,#PB_Sprite_Texture)
StartDrawing(SpriteOutput(#GoogleMapBitmap))
DrawImage(ImageID(#GoogleMapBitmap),0,0)
StopDrawing()
TransparentSpriteColor(#GoogleMapBitmap,#TransparentColor)
CreateSprite3D(#GoogleMapSprite,#GoogleMapBitmap)
GoogleMapLoaded=#True
SendMessage_(win,#WM_COMMAND,#MAP_UPDATE,0)
Else
Debug "CreateSprite() fehlgeschlagen..."
EndIf
UnlockMutex(ThreadMutex)