# HG changeset patch # User andrew.jordan <> # Date 1274912178 -3600 # Node ID bb16bb5b281805dd5d25a008d10ac3a30dbe3369 # Parent b6aa150091ee2c8afae935616935cd3506a59368 Minor change to fix the smeared mouse pointer and crash near the bottom of the screen, thanks George. diff -r b6aa150091ee -r bb16bb5b2818 baseport/syborg/pointer/syborg_pointer.cpp --- a/baseport/syborg/pointer/syborg_pointer.cpp Fri May 14 16:38:13 2010 +0100 +++ b/baseport/syborg/pointer/syborg_pointer.cpp Wed May 26 23:16:18 2010 +0100 @@ -111,11 +111,11 @@ iDisplayMode = videoInfo.iDisplayMode; iVideoMem = videoInfo.iVideoAddress + videoInfo.iOffsetToFirstPixel; - iOffSetBetweenEachLine = 640; + iOffSetBetweenEachLine = iScreenWidth; ix = iy = 0; - iXFactor = Fixed(iScreenWidth) / Fixed(0x8000); + iXFactor = Fixed(iScreenWidth) / Fixed(0x6000); iYFactor = Fixed(iScreenHeight) / Fixed(0x8000); iFifoPos = iFifoCount = 0;