diff options
-rw-r--r-- | configure.in | 1 | ||||
-rw-r--r-- | doc/Makefile.am | 2 | ||||
-rw-r--r-- | misc/xine-logoconv.c | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 50567a422..0a3e92855 100644 --- a/configure.in +++ b/configure.in @@ -910,6 +910,7 @@ doc/man/en/Makefile doc/man/en/man3/Makefile doc/xine-lib-API/Makefile doc/xine-lib-API/html/Makefile +doc/hackersguide/Makefile misc/xine-lib.spec misc/guenter.spec misc/SlackBuild diff --git a/doc/Makefile.am b/doc/Makefile.am index 6a119baae..3a06d71c8 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,5 +1,5 @@ -SUBDIRS = man xine-lib-API +SUBDIRS = man xine-lib-API hackersguide EXTRA_DIST = $(docs_DOCS) README dataflow.dia xine-lib-API.cfg diff --git a/misc/xine-logoconv.c b/misc/xine-logoconv.c index 490d206b4..20f4a0a4b 100644 --- a/misc/xine-logoconv.c +++ b/misc/xine-logoconv.c @@ -110,7 +110,7 @@ static void save_image (char *oldname, ImlibImage *img) { cv = v + 128.0; gzwrite (fp, &cy, 1); - if (px % 2) + if ((px-1) % 2) gzwrite (fp, &cv, 1); else gzwrite (fp, &cu, 1); |