summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--!NetSurf/Resources/en/Messages2
-rw-r--r--riscos/png.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/!NetSurf/Resources/en/Messages b/!NetSurf/Resources/en/Messages
index 26a060c11..946fea876 100644
--- a/!NetSurf/Resources/en/Messages
+++ b/!NetSurf/Resources/en/Messages
@@ -125,7 +125,7 @@ PNGError:PNG library error.
DrawTitle:Draw image (%lux%lu, %lu bytes)
GIFTitle:GIF image (%lux%lu, %lu bytes)
JPEGTitle:JPEG image (%ux%u, %lu bytes)
-PNGTitle:PNG image (%lux%lu)
+PNGTitle:PNG image (%lux%lu, %lu bytes)
SpriteTitle:Sprite image (%lux%lu, %lu bytes)
SelectMenu:Select
diff --git a/riscos/png.c b/riscos/png.c
index b31c992d3..440a17f34 100644
--- a/riscos/png.c
+++ b/riscos/png.c
@@ -252,7 +252,7 @@ bool nspng_convert(struct content *c, int width, int height)
c->title = malloc(100);
if (c->title)
snprintf(c->title, 100, messages_get("PNGTitle"),
- c->width, c->height);
+ c->width, c->height, c->source_size);
c->status = CONTENT_STATUS_DONE;
return true;
}