Oops - fix.

SVN revision: 31885
This commit is contained in:
Kim Woelders 2007-09-30 12:31:32 +00:00
parent 4880283400
commit 857e03edda
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ ScreenGetGeometryByHead(int head, int *px, int *py, int *pw, int *ph)
EScreen *ps;
int x, y, w, h;
if (head > 0 && head < n_screens)
if (head >= 0 && head < n_screens)
{
ps = p_screens + head;
x = ps->x;