[MPlayer-cvslog] r26439 - trunk/libvo/x11_common.c
attila
subversion at mplayerhq.hu
Sun Apr 13 13:15:08 CEST 2008
Author: attila
Date: Sun Apr 13 13:15:08 2008
New Revision: 26439
Log:
cosmetics: fix indentation
Modified:
trunk/libvo/x11_common.c
Modified: trunk/libvo/x11_common.c
==============================================================================
--- trunk/libvo/x11_common.c (original)
+++ trunk/libvo/x11_common.c Sun Apr 13 13:15:08 2008
@@ -379,14 +379,14 @@ void update_xinerama_info(void) {
int num_screens;
screens = XineramaQueryScreens(mDisplay, &num_screens);
- for (screen = num_screens - 1; screen > 0; screen--) {
- int left = screens[screen].x_org;
- int right = left + screens[screen].width;
- int top = screens[screen].y_org;
- int bottom = top + screens[screen].height;
- if (left <= x && x <= right && top <= y && y <= bottom)
- break;
- }
+ for (screen = num_screens - 1; screen > 0; screen--) {
+ int left = screens[screen].x_org;
+ int right = left + screens[screen].width;
+ int top = screens[screen].y_org;
+ int bottom = top + screens[screen].height;
+ if (left <= x && x <= right && top <= y && y <= bottom)
+ break;
+ }
if (screen < 0)
screen = 0;
vo_screenwidth = screens[screen].width;
More information about the MPlayer-cvslog
mailing list