summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/i_video.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/i_video.c')
-rw-r--r--apps/plugins/doom/i_video.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/plugins/doom/i_video.c b/apps/plugins/doom/i_video.c
index d8ed74ce62..abab755d6c 100644
--- a/apps/plugins/doom/i_video.c
+++ b/apps/plugins/doom/i_video.c
@@ -16,7 +16,10 @@
16 * GNU General Public License for more details. 16 * GNU General Public License for more details.
17 * 17 *
18 * $Log$ 18 * $Log$
19 * Revision 1.19 2006/08/03 20:17:22 bagder 19 * Revision 1.20 2006/08/07 01:46:41 amiconn
20 * Grayscale library ported to the grayscale iPods, first version. Added C reference versions of gray_update_rect() for both horizontal and vertical pixel packing. gray_update_rect() and gray_ub_gray_bitmap_part() not yet assembler optimised. Grayscale screendump doesn't work yet. * Fixed button assignments for iPod in grayscale.c
21 *
22 * Revision 1.19 2006-08-03 20:17:22 bagder
20 * Barry Wardell's keymappings for H10 23 * Barry Wardell's keymappings for H10
21 * 24 *
22 * Revision 1.18 2006-08-02 00:21:59 amiconn 25 * Revision 1.18 2006-08-02 00:21:59 amiconn
@@ -500,7 +503,7 @@ void I_InitGraphics(void)
500 503
501#ifndef HAVE_LCD_COLOR 504#ifndef HAVE_LCD_COLOR
502 gbuf=malloc(GRAYBUFSIZE); 505 gbuf=malloc(GRAYBUFSIZE);
503 gray_init(rb, gbuf, GRAYBUFSIZE, false, LCD_WIDTH, LCD_HEIGHT/8, 32, 506 gray_init(rb, gbuf, GRAYBUFSIZE, false, LCD_WIDTH, LCD_HEIGHT, 32,
504 3<<7 /* 1.5 */, NULL); 507 3<<7 /* 1.5 */, NULL);
505 /* switch on grayscale overlay */ 508 /* switch on grayscale overlay */
506 gray_show(true); 509 gray_show(true);