MoveMouse() Not working in Linux

BlitzMax Forums/BlitzMax Programming/MoveMouse() Not working in Linux

Matt McFarland(Posted 2006) [#1]
Interesting enough, when I ported over Ace of Bases to linux I found that MoveMouse was moving the cursor to the lower right corner no matter what (I could put MoveMouse(1,1) for that matter)

I wonder if it has something to do with the following warning (everyone says its harmless in this post though!! Are they wrong?!?!)

/usr/bin/ld: warning: libstdc++.so.6, needed by /usr/lib/libGLU.so, may conflict with libstdc++.so.5

Everyone saying its harmless here:
http://www.blitzbasic.com/Community/posts.php?topic=54592


Matt McFarland(Posted 2006) [#2]
-= Bump =-


skidracer(Posted 2006) [#3]
Sorry, will be fixed in next update, the fix is mod/system.mod/system.linux.c[48]:
void bbMoveMouse(int x,int y){
	XWarpPointer(x_display,None,x_window,0,0,0,0,x,y);
}