diff options
author | Keith Packard <keithp@mandolin.keithp.com> | 2006-11-01 00:29:46 -0800 |
---|---|---|
committer | Keith Packard <keithp@mandolin.keithp.com> | 2006-11-01 00:29:46 -0800 |
commit | 4056e6e79a4e37101d298ae29139c83d3816368b (patch) | |
tree | be8d982fb4855ac338d4113fb611f62fddc93a68 /randr/rrpointer.c | |
parent | e21604914dccece6bc64c69b55512d1f1a969235 (diff) |
Move physical size from mode to output.
Modes can be shared across different sized monitors this way.
Also caught some missing byteswapping and an incorrect return type.
Diffstat (limited to 'randr/rrpointer.c')
-rw-r--r-- | randr/rrpointer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/randr/rrpointer.c b/randr/rrpointer.c index 7ba0460f5..c092e494b 100644 --- a/randr/rrpointer.c +++ b/randr/rrpointer.c @@ -131,7 +131,7 @@ RRPointerScreenConfigured (ScreenPtr pScreen) int x, y; if (pScreen != pCurrentScreen) - return FALSE; + return; GetSpritePosition (&x, &y); RRPointerToNearestCrtc (pScreen, x, y, NULL); } |