diff options
-rw-r--r-- | wr/write-ppm.c | 2 | ||||
-rw-r--r-- | wr/write-ps.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/wr/write-ppm.c b/wr/write-ppm.c index d16035b..bd5a0f0 100644 --- a/wr/write-ppm.c +++ b/wr/write-ppm.c @@ -15,7 +15,7 @@ ppm_write(FILE *fp, struct ida_image *img) { fprintf(fp,"P6\n" "# written by ida " VERSION "\n" - "# http://bytesex.org/ida/\n" + "# https://www.kraxel.org/blog/linux/fbida/\n" "%d %d\n255\n", img->i.width,img->i.height); fwrite(img->data, img->i.height, 3*img->i.width, fp); diff --git a/wr/write-ps.c b/wr/write-ps.c index ee34988..adbf72a 100644 --- a/wr/write-ps.c +++ b/wr/write-ps.c @@ -42,7 +42,7 @@ static struct PAPER formats[] = { static const char *header = "%%!PS-Adobe-2.0 EPSF-2.0\n" -"%%%%Creator: ida " VERSION " (http://bytesex.org/ida/)\n" +"%%%%Creator: ida " VERSION " (https://www.kraxel.org/blog/linux/fbida/)\n" "%%%%Pages: 1\n" "%%%%BoundingBox: %d %d %d %d\n" "%%%%DocumentFonts: \n" |