forked from e16/e16
1
0
Fork 0
SVN revision: 51725
This commit is contained in:
Kim Woelders 2010-08-29 13:45:57 +00:00
parent 652510db74
commit 5a98c9373e
1 changed files with 7 additions and 4 deletions

View File

@ -350,8 +350,9 @@ BackgroundCmp(const Background * bg, const Background * bgx)
{
if ((strcmp(bg->bg.file, bgx->bg.file)) ||
(bg->bg.keep_aspect != bgx->bg.keep_aspect) ||
(bg->bg.xjust != bgx->bg.xjust) || (bg->bg.yjust != bgx->bg.yjust) ||
(bg->bg.xperc != bgx->bg.xperc) ||(bg->bg.yperc != bgx->bg.yperc))
(bg->bg.xjust != bgx->bg.xjust) ||
(bg->bg.yjust != bgx->bg.yjust) ||
(bg->bg.xperc != bgx->bg.xperc) || (bg->bg.yperc != bgx->bg.yperc))
return 1;
}
else if (bg->bg.file || bgx->bg.file)
@ -361,8 +362,10 @@ BackgroundCmp(const Background * bg, const Background * bgx)
{
if ((strcmp(bg->top.file, bgx->top.file)) ||
(bg->top.keep_aspect != bgx->top.keep_aspect) ||
(bg->top.xjust != bgx->top.xjust) || (bg->top.yjust != bgx->top.yjust) ||
(bg->top.xperc != bgx->top.xperc) || (bg->top.yperc != bgx->top.yperc))
(bg->top.xjust != bgx->top.xjust) ||
(bg->top.yjust != bgx->top.yjust) ||
(bg->top.xperc != bgx->top.xperc) ||
(bg->top.yperc != bgx->top.yperc))
return 1;
}
else if (bg->top.file || bgx->top.file)