git: 9front

Download patch

ref: 1460cf0d386e89f158f49580c89eedb8912bc860
parent: 5aeeed7c8d790150de9f927175a0613055884c16
author: ftrvxmtrx <ftrvxmtrx@gmail.com>
date: Sun Jan 20 19:06:36 EST 2013

page: force images to RGB using -3 flag (fixes grey-scale images displaying)

--- a/sys/src/cmd/page.c
+++ b/sys/src/cmd/page.c
@@ -294,7 +294,7 @@
 		if(strcmp(p->ext, "ico") == 0)
 			snprint(nam, sizeof(nam), "%s -c", p->ext);
 		else
-			snprint(nam, sizeof(nam), "%s -t9", p->ext);
+			snprint(nam, sizeof(nam), "%s -t39", p->ext);
 		pipeline(fd, "%s", nam);
 	}
 
--