From ead3355a2b5308f679e3a7f1484a2d761dd70811 Mon Sep 17 00:00:00 2001 From: NuPogodi Date: Wed, 4 Jul 2012 20:40:14 +0300 Subject: [PATCH] Update master --- screen.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/screen.lua b/screen.lua index 69978bc88..67c1734dd 100644 --- a/screen.lua +++ b/screen.lua @@ -135,7 +135,7 @@ function Screen:BMP(fn, pack) -- for 4bpp framebuffers only if inputf then local outputf, size = assert(io.open(fn,"wb")) if math.max(G_width,G_height)>1000 then -- KDX(G) - size=string.char(0x0F,0x1B,3,0) -- 0x00,0x72,0x06,0x00 > raw bytes in image 825*1200/2 = 0x000F1B30 @ KDX(G) + size=string.char(0x98,0x8D,7,0) -- 0x00,0x72,0x06,0x00 > raw bytes in image 825*1200/2 = 0x00078D98 @ KDX(G) else -- 600x800 size=string.char(0x80,0xA9,3,0) -- 0x80,0xA9,0x03,0x00 > raw bytes in image 600*800/2 = 0x0003A980 @ K2&3 end