summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Kurbjun <kkurbjun@gmail.com>2006-04-03 16:30:12 +0000
committerKarl Kurbjun <kkurbjun@gmail.com>2006-04-03 16:30:12 +0000
commitee80e003b39d532326267e8539032b3e3e76d948 (patch)
tree843770e1cab5e80d1f15623e68478561b1409e72
parent9f57ce484e41f64fc6788d9acc26c0c0638b7305 (diff)
downloadrockbox-ee80e003b39d532326267e8539032b3e3e76d948.tar.gz
rockbox-ee80e003b39d532326267e8539032b3e3e76d948.zip
Fix #if
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9458 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/doom/i_video.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/doom/i_video.c b/apps/plugins/doom/i_video.c
index 83fcc4749c..61cd3f3fe2 100644
--- a/apps/plugins/doom/i_video.c
+++ b/apps/plugins/doom/i_video.c
@@ -16,8 +16,8 @@
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.6 2006/04/03 16:13:15 kkurbjun 19 * Revision 1.7 2006/04/03 16:30:12 kkurbjun
20 * Add grayscale lib for the H100's 20 * Fix #if
21 * 21 *
22 * Revision 1.5 2006-04-03 08:51:08 bger 22 * Revision 1.5 2006-04-03 08:51:08 bger
23 * Patch #4864 by Jonathan Gordon: text editor plugin, with some changes by me. 23 * Patch #4864 by Jonathan Gordon: text editor plugin, with some changes by me.
@@ -344,7 +344,7 @@ void I_UpdateNoBlit (void)
344 344
345void I_FinishUpdate (void) 345void I_FinishUpdate (void)
346{ 346{
347#if defined(LCD_H300) && !defined(SIMULATOR) 347#if (CONFIG_LCD == LCD_H300) && !defined(SIMULATOR)
348 /* 348 /*
349 Lookup tables are no longer needed (H300 specific, decreases timedemo 349 Lookup tables are no longer needed (H300 specific, decreases timedemo
350 by about 500 tics) 350 by about 500 tics)