Fixed double locking of mutex.

This commit is contained in:
crs 2003-03-13 19:20:55 +00:00
parent 1d17f865ea
commit a7bafcca2f
1 changed files with 2 additions and 1 deletions

View File

@ -561,7 +561,8 @@ CXWindowsScreen::getCursorPos(SInt32& x, SInt32& y) const
y = my;
}
else {
getCursorCenter(x, y);
x = m_x + (m_w >> 1);
y = m_y + (m_h >> 1);
}
}