diff options
author | Jens Arnold <amiconn@rockbox.org> | 2006-11-10 20:26:01 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2006-11-10 20:26:01 +0000 |
commit | 780f79e7a4028a57e4bf591539a540dbfae2496d (patch) | |
tree | 48ddec4b94e11ebc545070b2af6f52144661bf3c /tools/bmp2rb.c | |
parent | 270cb0b68172c740820f772563e66a79308e641e (diff) |
Removed the Gmini 120 and Gmini SP code. These ports are dead, unfortunately.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11504 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/bmp2rb.c')
-rw-r--r-- | tools/bmp2rb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/bmp2rb.c b/tools/bmp2rb.c index 478badefd7..aa23d45830 100644 --- a/tools/bmp2rb.c +++ b/tools/bmp2rb.c @@ -290,7 +290,7 @@ int transform_bitmap(const struct RGBQUAD *src, int width, int height, switch (format) { - case 0: /* Archos recorders, Ondio, Gmini 120/SP, Iriver H1x0 monochrome */ + case 0: /* Archos recorders, Ondio, Iriver H1x0 monochrome */ dst_w = width; dst_h = (height + 7) / 8; dst_d = 8; @@ -351,7 +351,7 @@ int transform_bitmap(const struct RGBQUAD *src, int width, int height, switch (format) { - case 0: /* Archos recorders, Ondio, Gmini 120/SP, Iriver H1x0 b&w */ + case 0: /* Archos recorders, Ondio, Iriver H1x0 b&w */ for (row = 0; row < height; row++) for (col = 0; col < width; col++) { @@ -528,7 +528,7 @@ void print_usage(void) "\t-h <dir> Create header file in <dir>/<id>.h\n" "\t-a Show ascii picture of bitmap\n" "\t-f <n> Generate destination format n, default = 0\n" - "\t 0 Archos recorder, Ondio, Gmini 120/SP, Iriver H1x0 mono\n" + "\t 0 Archos recorder, Ondio, Iriver H1x0 mono\n" "\t 1 Archos player graphics library\n" "\t 2 Iriver H1x0 4-grey\n" "\t 3 Canonical 8-bit greyscale\n" |