<div>Hello,</div>
<div> </div>
<div>I compiled Marble-0.8.0 on Windws with MinGW 3.4.5 for Qt 4.5.3. I try to run it on Win XP Sp3.</div>
<div>On development machine it runs fine. Bu if I move app to other XP machines, it crashes when loading tiles (seems <strong>division by zero</strong>). The same thing happens eith release and debug versions.</div>
<div> </div>
<div><strong><font style="BACKGROUND-COLOR: #ffffcc">Here's what GDB shows:</font></strong></div>
<div> </div>
<div>...</div>
<div> </div>
<div>warning: "Loading Default Placemark Cache File:Z:/release/data/placemarks/bounda<br>ryplacemarks.cache"</div>
<div>warning: "Loading Default Placemark Cache File:Z:/release/data/placemarks/citypl<br>acemarks.cache"</div>
<div>warning: "Loading Default Placemark Cache File:Z:/release/data/placemarks/elevpl<br>acemarks.cache"</div>
<div>warning: "Loading Default Placemark Cache File:Z:/release/data/placemarks/otherp<br>lacemarks.cache"</div>
<div>warning: newGeoDataDocumentAdded "elevplacemarks"</div>
<div>warning: Loading ended true</div>
<div>warning: placemarksLoaded</div>
<div>warning: newGeoDataDocumentAdded "otherplacemarks"</div>
<div>warning: Loading ended true</div>
<div>warning: placemarksLoaded</div>
<div>warning: TextureColorizer: Time elapsed: 110 ms</div>
<div>warning: THEME CHANGED: *** "earth/srtm/srtm.dgml"</div>
<div>warning: Style reset requested.</div>
<div>warning: Zoom: 1050 Distance: 9401.94</div>
<div>warning: Containername: "baseplacemarks" to be finalized: false 5</div>
<div>warning: Containername: "elevplacemarks" to be finalized: false 4</div>
<div>warning: Containername: "otherplacemarks" to be finalized: false 3</div>
<div>warning: "TileLoaderHelper::levelToColumn(): Invalid level: -2147483648"</div>
<div>warning: "TileLoaderHelper::levelToRow(): Invalid level: -2147483648"</div>
<div><br><strong>Program received signal SIGFPE, Arithmetic exception.<br>0x706b719e in Marble::AbstractScanlineTextureMapper::nextTile ()<br> from Z:\release\libmarblewidget.dll</strong><br>(gdb)</div>
<div> </div>
<div>------------------------------------------------------------------------------------------------------------</div>
<div> </div>
<div>this was release version. If I run debug version, I get more exact info:</div>
<div> </div>
<div>problem is in file "AbstractScanlineTextureMapper.cpp" in line 473.</div>
<div> </div>
<div> 470: // tileCol counts the tile columns left from the current tile.<br> 471: // tileRow counts the tile rows on the top from the current tile.</div>
<div> 472: </div>
<div> <strong> 473: int tileCol = lon / m_tileLoader->tileWidth();</strong><br> 474: int tileRow = lat / m_tileLoader->tileHeight();</div>
<div> </div>
<div>WHY DOES THIS HAPPEN ONLY ON OTHER XP MACHINES? As I mentoined on development machine everything works fine.</div>